Branch data Line data Source code
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 : 230963 : CHMAC_SHA256::CHMAC_SHA256(const unsigned char* key, size_t keylen)
12 : : {
13 : 230963 : unsigned char rkey[64];
14 [ + + ]: 230963 : if (keylen <= 64) {
15 : 230735 : memcpy(rkey, key, keylen);
16 : 230735 : memset(rkey + keylen, 0, 64 - keylen);
17 : : } else {
18 : 228 : CSHA256().Write(key, keylen).Finalize(rkey);
19 : 228 : memset(rkey + 32, 0, 32);
20 : : }
21 : :
22 [ + + ]: 15012595 : for (int n = 0; n < 64; n++)
23 : 14781632 : rkey[n] ^= 0x5c;
24 : 230963 : outer.Write(rkey, 64);
25 : :
26 [ + + ]: 15012595 : for (int n = 0; n < 64; n++)
27 : 14781632 : rkey[n] ^= 0x5c ^ 0x36;
28 : 230963 : inner.Write(rkey, 64);
29 : 230963 : }
30 : :
31 : 230961 : void CHMAC_SHA256::Finalize(unsigned char hash[OUTPUT_SIZE])
32 : : {
33 : 230961 : unsigned char temp[32];
34 : 230961 : inner.Finalize(temp);
35 : 230961 : outer.Write(temp, 32).Finalize(hash);
36 : 230961 : }
|