Bitcoin ABC 0.26.3
P2P Digital Currency
|
#include <crypto/common.h>
#include <crypto/ripemd160.h>
#include <crypto/sha256.h>
#include <prevector.h>
#include <serialize.h>
#include <uint256.h>
#include <version.h>
#include <vector>
Go to the source code of this file.
Classes | |
class | CHash256 |
A hasher class for Bitcoin's 256-bit hash (double SHA-256). More... | |
class | CHash160 |
A hasher class for Bitcoin's 160-bit hash (SHA-256 + RIPEMD-160). More... | |
class | HashWriter |
A writer stream (for serialization) that computes a 256-bit hash. More... | |
class | CHashWriter |
class | CHashVerifier< Source > |
Reads data from an underlying stream, while hashing the read data. More... | |
Typedefs | |
typedef uint256 | ChainCode |
Functions | |
template<typename T > | |
uint256 | Hash (const T &in1) |
Compute the 256-bit hash of an object. | |
template<typename T1 , typename T2 > | |
uint256 | Hash (const T1 &in1, const T2 &in2) |
Compute the 256-bit hash of the concatenation of two objects. | |
template<typename T1 > | |
uint160 | Hash160 (const T1 &in1) |
Compute the 160-bit hash an object. | |
template<typename T > | |
uint256 | SerializeHash (const T &obj, int nType=SER_GETHASH, int nVersion=PROTOCOL_VERSION) |
Compute the 256-bit hash of an object's serialization. | |
uint32_t | MurmurHash3 (uint32_t nHashSeed, Span< const uint8_t > vDataToHash) |
void | BIP32Hash (const ChainCode &chainCode, uint32_t nChild, uint8_t header, const uint8_t data[32], uint8_t output[64]) |
uint256 SerializeHash | ( | const T & | obj, |
int | nType = SER_GETHASH , |
||
int | nVersion = PROTOCOL_VERSION |
||
) |