Bitcoin Core
31.1.0
P2P Digital Currency
Toggle main menu visibility
Loading...
Searching...
No Matches
src
crypto
hmac_sha256.cpp
Go to the documentation of this file.
1
// Copyright (c) 2014-present 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 <
crypto/sha256.h
>
8
9
#include <cstring>
10
11
CHMAC_SHA256::CHMAC_SHA256
(
const
unsigned
char
* key,
size_t
keylen)
12
{
13
unsigned
char
rkey[64];
14
if
(keylen <= 64) {
15
memcpy(rkey, key, keylen);
16
memset(rkey + keylen, 0, 64 - keylen);
17
}
else
{
18
CSHA256
().
Write
(key, keylen).
Finalize
(rkey);
19
memset(rkey + 32, 0, 32);
20
}
21
22
for
(
int
n = 0; n < 64; n++)
23
rkey[n] ^= 0x5c;
24
outer
.Write(rkey, 64);
25
26
for
(
int
n = 0; n < 64; n++)
27
rkey[n] ^= 0x5c ^ 0x36;
28
inner
.Write(rkey, 64);
29
}
30
31
void
CHMAC_SHA256::Finalize
(
unsigned
char
hash[
OUTPUT_SIZE
])
32
{
33
unsigned
char
temp[32];
34
inner
.Finalize(temp);
35
outer
.Write(temp, 32).Finalize(hash);
36
}
CHMAC_SHA256::Finalize
void Finalize(unsigned char hash[OUTPUT_SIZE])
Definition
hmac_sha256.cpp:31
CHMAC_SHA256::CHMAC_SHA256
CHMAC_SHA256(const unsigned char *key, size_t keylen)
Definition
hmac_sha256.cpp:11
CHMAC_SHA256::OUTPUT_SIZE
static const size_t OUTPUT_SIZE
Definition
hmac_sha256.h:20
CHMAC_SHA256::inner
CSHA256 inner
Definition
hmac_sha256.h:17
CHMAC_SHA256::outer
CSHA256 outer
Definition
hmac_sha256.h:16
CSHA256
A hasher class for SHA-256.
Definition
sha256.h:14
CSHA256::Finalize
void Finalize(unsigned char hash[OUTPUT_SIZE])
Definition
sha256.cpp:725
CSHA256::Write
CSHA256 & Write(const unsigned char *data, size_t len)
Definition
sha256.cpp:699
hmac_sha256.h
sha256.h
Generated on
for Bitcoin Core by
1.17.0