Bitcoin ABC 0.26.3
P2P Digital Currency
Loading...
Searching...
No Matches
hmac_sha256.h
Go to the documentation of this file.
1// Copyright (c) 2014 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#ifndef BITCOIN_CRYPTO_HMAC_SHA256_H
6#define BITCOIN_CRYPTO_HMAC_SHA256_H
7
8#include <crypto/sha256.h>
9
10#include <cstdint>
11#include <cstdlib>
12
15private:
18
19public:
20 static const size_t OUTPUT_SIZE = 32;
21
22 CHMAC_SHA256(const uint8_t *key, size_t keylen);
23 CHMAC_SHA256 &Write(const uint8_t *data, size_t len) {
24 inner.Write(data, len);
25 return *this;
26 }
27 void Finalize(uint8_t hash[OUTPUT_SIZE]);
28};
29
30#endif // BITCOIN_CRYPTO_HMAC_SHA256_H
A hasher class for HMAC-SHA-256.
Definition hmac_sha256.h:14
static const size_t OUTPUT_SIZE
Definition hmac_sha256.h:20
CSHA256 inner
Definition hmac_sha256.h:17
CSHA256 outer
Definition hmac_sha256.h:16
CHMAC_SHA256 & Write(const uint8_t *data, size_t len)
Definition hmac_sha256.h:23
void Finalize(uint8_t hash[OUTPUT_SIZE])
A hasher class for SHA-256.
Definition sha256.h:13
CSHA256 & Write(const uint8_t *data, size_t len)
Definition sha256.cpp:819
T GetRand(T nMax=std::numeric_limits< T >::max()) noexcept
Generate a uniform random integer of type T in the range [0..nMax) nMax defaults to std::numeric_limi...
Definition random.h:85