Bitcoin ABC 0.26.3
P2P Digital Currency
Loading...
Searching...
No Matches
hmac_sha512.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_SHA512_H
6#define BITCOIN_CRYPTO_HMAC_SHA512_H
7
8#include <crypto/sha512.h>
9
10#include <cstdint>
11#include <cstdlib>
12
15private:
18
19public:
20 static const size_t OUTPUT_SIZE = 64;
21
22 CHMAC_SHA512(const uint8_t *key, size_t keylen);
23 CHMAC_SHA512 &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_SHA512_H
A hasher class for HMAC-SHA-512.
Definition hmac_sha512.h:14
static const size_t OUTPUT_SIZE
Definition hmac_sha512.h:20
CHMAC_SHA512 & Write(const uint8_t *data, size_t len)
Definition hmac_sha512.h:23
CSHA512 outer
Definition hmac_sha512.h:16
void Finalize(uint8_t hash[OUTPUT_SIZE])
CSHA512 inner
Definition hmac_sha512.h:17
A hasher class for SHA-512.
Definition sha512.h:12
CSHA512 & Write(const uint8_t *data, size_t len)
Definition sha512.cpp:248
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