2022-12-24 23:49:50 +00:00
|
|
|
// Copyright (c) 2020-2022 The Bitcoin Core developers
|
2020-08-30 12:54:45 -07:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef BITCOIN_CRYPTO_SHA3_H
|
|
|
|
#define BITCOIN_CRYPTO_SHA3_H
|
|
|
|
|
|
|
|
#include <span.h>
|
|
|
|
|
2022-09-23 10:48:47 +01:00
|
|
|
#include <cstdlib>
|
2020-08-30 12:54:45 -07:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
//! The Keccak-f[1600] transform.
|
|
|
|
void KeccakF(uint64_t (&st)[25]);
|
|
|
|
|
|
|
|
class SHA3_256
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
uint64_t m_state[25] = {0};
|
|
|
|
unsigned char m_buffer[8];
|
|
|
|
unsigned m_bufsize = 0;
|
|
|
|
unsigned m_pos = 0;
|
|
|
|
|
|
|
|
//! Sponge rate in bits.
|
|
|
|
static constexpr unsigned RATE_BITS = 1088;
|
|
|
|
|
|
|
|
//! Sponge rate expressed as a multiple of the buffer size.
|
|
|
|
static constexpr unsigned RATE_BUFFERS = RATE_BITS / (8 * sizeof(m_buffer));
|
|
|
|
|
|
|
|
static_assert(RATE_BITS % (8 * sizeof(m_buffer)) == 0, "Rate must be a multiple of 8 bytes");
|
|
|
|
|
|
|
|
public:
|
|
|
|
static constexpr size_t OUTPUT_SIZE = 32;
|
|
|
|
|
|
|
|
SHA3_256() {}
|
|
|
|
SHA3_256& Write(Span<const unsigned char> data);
|
|
|
|
SHA3_256& Finalize(Span<unsigned char> output);
|
|
|
|
SHA3_256& Reset();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BITCOIN_CRYPTO_SHA3_H
|