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_sha512.h>
6 : :
7 : : #include <crypto/sha512.h>
8 : :
9 : : #include <cstring>
10 : :
11 : 779323 : CHMAC_SHA512::CHMAC_SHA512(const unsigned char* key, size_t keylen)
12 : : {
13 : 779323 : unsigned char rkey[128];
14 [ + + ]: 779323 : if (keylen <= 128) {
15 : 779320 : memcpy(rkey, key, keylen);
16 : 779320 : memset(rkey + keylen, 0, 128 - keylen);
17 : : } else {
18 : 3 : CSHA512().Write(key, keylen).Finalize(rkey);
19 : 3 : memset(rkey + 64, 0, 64);
20 : : }
21 : :
22 [ + + ]: 100532667 : for (int n = 0; n < 128; n++)
23 : 99753344 : rkey[n] ^= 0x5c;
24 : 779323 : outer.Write(rkey, 128);
25 : :
26 [ + + ]: 100532667 : for (int n = 0; n < 128; n++)
27 : 99753344 : rkey[n] ^= 0x5c ^ 0x36;
28 : 779323 : inner.Write(rkey, 128);
29 : 779323 : }
30 : :
31 : 782790 : void CHMAC_SHA512::Finalize(unsigned char hash[OUTPUT_SIZE])
32 : : {
33 : 782790 : unsigned char temp[64];
34 : 782790 : inner.Finalize(temp);
35 : 782790 : outer.Write(temp, 64).Finalize(hash);
36 : 782790 : }
|