|
|
|
@ -6,6 +6,7 @@
|
|
|
|
|
#ifndef BITCOIN_HASH_H
|
|
|
|
|
#define BITCOIN_HASH_H
|
|
|
|
|
|
|
|
|
|
#include <attributes.h>
|
|
|
|
|
#include <crypto/common.h>
|
|
|
|
|
#include <crypto/ripemd160.h>
|
|
|
|
|
#include <crypto/sha256.h>
|
|
|
|
@ -194,6 +195,9 @@ uint256 SerializeHash(const T& obj, int nType=SER_GETHASH, int nVersion=PROTOCOL
|
|
|
|
|
return ss.GetHash();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Single-SHA256 a 32-byte input (represented as uint256). */
|
|
|
|
|
NODISCARD uint256 SHA256Uint256(const uint256& input);
|
|
|
|
|
|
|
|
|
|
unsigned int MurmurHash3(unsigned int nHashSeed, Span<const unsigned char> vDataToHash);
|
|
|
|
|
|
|
|
|
|
void BIP32Hash(const ChainCode &chainCode, unsigned int nChild, unsigned char header, const unsigned char data[32], unsigned char output[64]);
|
|
|
|
|