MCPcopy Create free account
hub / github.com/Kitware/CMake / Finalize

Method Finalize

Source/cmCryptoHash.cxx:225–230  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

223}
224
225std::vector<unsigned char> cmCryptoHash::Finalize()
226{
227 std::vector<unsigned char> hash(rhash_get_digest_size(this->Id), 0);
228 rhash_final(this->CTX, hash.data());
229 return hash;
230}
231
232std::string cmCryptoHash::FinalizeHex()
233{

Callers 3

ByteHashStringMethod · 0.95
ByteHashStreamMethod · 0.95
FinalizeHexMethod · 0.95

Calls 3

rhash_get_digest_sizeFunction · 0.85
rhash_finalFunction · 0.85
dataMethod · 0.45

Tested by

no test coverage detected