Bitcoin ABC 0.26.3
P2P Digital Currency
Loading...
Searching...
No Matches
hmac_sha256.cpp
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
6
7#include <cstring>
8
10 uint8_t rkey[64];
11 if (keylen <= 64) {
12 memcpy(rkey, key, keylen);
13 memset(rkey + keylen, 0, 64 - keylen);
14 } else {
16 memset(rkey + 32, 0, 32);
17 }
18
19 for (int n = 0; n < 64; n++) {
20 rkey[n] ^= 0x5c;
21 }
22 outer.Write(rkey, 64);
23
24 for (int n = 0; n < 64; n++) {
25 rkey[n] ^= 0x5c ^ 0x36;
26 }
27 inner.Write(rkey, 64);
28}
29
30void CHMAC_SHA256::Finalize(uint8_t hash[OUTPUT_SIZE]) {
31 uint8_t temp[32];
33 outer.Write(temp, 32).Finalize(hash);
34}
CHMAC_SHA256(const uint8_t *key, size_t keylen)
CSHA256 inner
Definition hmac_sha256.h:17
CSHA256 outer
Definition hmac_sha256.h:16
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
void Finalize(uint8_t hash[OUTPUT_SIZE])
Definition sha256.cpp:844
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