Bitcoin Core  31.0.0
P2P Digital Currency
hmac_sha512.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_sha512.h>
6 
7 #include <crypto/sha512.h>
8 
9 #include <cstring>
10 
11 CHMAC_SHA512::CHMAC_SHA512(const unsigned char* key, size_t keylen)
12 {
13  unsigned char rkey[128];
14  if (keylen <= 128) {
15  memcpy(rkey, key, keylen);
16  memset(rkey + keylen, 0, 128 - keylen);
17  } else {
18  CSHA512().Write(key, keylen).Finalize(rkey);
19  memset(rkey + 64, 0, 64);
20  }
21 
22  for (int n = 0; n < 128; n++)
23  rkey[n] ^= 0x5c;
24  outer.Write(rkey, 128);
25 
26  for (int n = 0; n < 128; n++)
27  rkey[n] ^= 0x5c ^ 0x36;
28  inner.Write(rkey, 128);
29 }
30 
31 void CHMAC_SHA512::Finalize(unsigned char hash[OUTPUT_SIZE])
32 {
33  unsigned char temp[64];
34  inner.Finalize(temp);
35  outer.Write(temp, 64).Finalize(hash);
36 }
void Finalize(unsigned char hash[OUTPUT_SIZE])
Definition: hmac_sha512.cpp:31
memcpy(result.begin(), stream.data(), stream.size())
void Finalize(unsigned char hash[OUTPUT_SIZE])
Definition: sha512.cpp:185
CSHA512 outer
Definition: hmac_sha512.h:16
CSHA512 & Write(const unsigned char *data, size_t len)
Definition: sha512.cpp:159
CHMAC_SHA512(const unsigned char *key, size_t keylen)
Definition: hmac_sha512.cpp:11
A hasher class for SHA-512.
Definition: sha512.h:12
CSHA512 inner
Definition: hmac_sha512.h:17