MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / SHA256Uint256

Function SHA256Uint256

src/hash.cpp:78–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76}
77
78uint256 SHA256Uint256(const uint256& input)
79{
80 uint256 result;
81 CSHA256().Write(input.begin(), 32).Finalize(result.begin());
82 return result;
83}
84
85HashWriter TaggedHash(const std::string& tag)
86{

Callers 2

InitMethod · 0.85
SignatureHashFunction · 0.85

Calls 4

CSHA256Class · 0.85
FinalizeMethod · 0.45
WriteMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected