5 #ifndef BITCOIN_CRYPTO_HMAC_SHA256_H 6 #define BITCOIN_CRYPTO_HMAC_SHA256_H 12 #include "crypto_global.h" 22 static const size_t OUTPUT_SIZE = 32;
25 CHMAC_SHA256& Write(
const unsigned char* data,
size_t len)
27 inner.Write(data, len);
30 void Finalize(
unsigned char hash[OUTPUT_SIZE]);
33 #endif // BITCOIN_CRYPTO_HMAC_SHA256_H Definition: hmac_sha256.h:15