Bitcoin ABC
0.26.3
P2P Digital Currency
Loading...
Searching...
No Matches
src
crypto
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
5
#include <
crypto/hmac_sha256.h
>
6
7
#include <cstring>
8
9
CHMAC_SHA256::CHMAC_SHA256
(
const
uint8_t
*key,
size_t
keylen
) {
10
uint8_t
rkey
[64];
11
if
(
keylen
<= 64) {
12
memcpy
(
rkey
, key,
keylen
);
13
memset
(
rkey
+
keylen
, 0, 64 -
keylen
);
14
}
else
{
15
CSHA256
().
Write
(key,
keylen
).
Finalize
(
rkey
);
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
30
void
CHMAC_SHA256::Finalize
(
uint8_t
hash[OUTPUT_SIZE]) {
31
uint8_t
temp
[32];
32
inner
.
Finalize
(
temp
);
33
outer
.
Write
(
temp
, 32).
Finalize
(hash);
34
}
CHMAC_SHA256::CHMAC_SHA256
CHMAC_SHA256(const uint8_t *key, size_t keylen)
Definition
hmac_sha256.cpp:9
CHMAC_SHA256::inner
CSHA256 inner
Definition
hmac_sha256.h:17
CHMAC_SHA256::outer
CSHA256 outer
Definition
hmac_sha256.h:16
CHMAC_SHA256::Finalize
void Finalize(uint8_t hash[OUTPUT_SIZE])
Definition
hmac_sha256.cpp:30
CSHA256
A hasher class for SHA-256.
Definition
sha256.h:13
CSHA256::Write
CSHA256 & Write(const uint8_t *data, size_t len)
Definition
sha256.cpp:819
CSHA256::Finalize
void Finalize(uint8_t hash[OUTPUT_SIZE])
Definition
sha256.cpp:844
hmac_sha256.h
GetRand
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
Generated on Sat Nov 23 2024 02:37:58 for Bitcoin ABC by
1.9.8