5 #ifndef BITCOIN_CRYPTO_HMAC_SHA512_H 6 #define BITCOIN_CRYPTO_HMAC_SHA512_H 13 #include "crypto_global.h" 23 static const size_t OUTPUT_SIZE = 64;
26 CHMAC_SHA512& Write(
const unsigned char* data,
size_t len)
28 inner.Write(data, len);
31 void Finalize(
unsigned char hash[OUTPUT_SIZE]);
34 #endif // BITCOIN_CRYPTO_HMAC_SHA512_H
Definition: hmac_sha512.h:16