Coverage Report

Created: 2026-04-20 22:07

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/root/bitcoin/src/crypto/hmac_sha256.cpp
Line
Count
Source
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
247k
{
13
247k
    unsigned char rkey[64];
14
247k
    if (keylen <= 64) {
15
247k
        memcpy(rkey, key, keylen);
16
247k
        memset(rkey + keylen, 0, 64 - keylen);
17
247k
    } else {
18
225
        CSHA256().Write(key, keylen).Finalize(rkey);
19
225
        memset(rkey + 32, 0, 32);
20
225
    }
21
22
16.1M
    for (int n = 0; n < 64; n++)
23
15.8M
        rkey[n] ^= 0x5c;
24
247k
    outer.Write(rkey, 64);
25
26
16.1M
    for (int n = 0; n < 64; n++)
27
15.8M
        rkey[n] ^= 0x5c ^ 0x36;
28
247k
    inner.Write(rkey, 64);
29
247k
}
30
31
void CHMAC_SHA256::Finalize(unsigned char hash[OUTPUT_SIZE])
32
247k
{
33
247k
    unsigned char temp[32];
34
247k
    inner.Finalize(temp);
35
247k
    outer.Write(temp, 32).Finalize(hash);
36
247k
}