MCPcopy Create free account
hub / github.com/catboost/catboost / Final

Method Final

library/cpp/digest/md5/md5.cpp:165–174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

163 */
164
165ui8* MD5::Final(ui8 digest[16]) {
166 /* Do padding. */
167 Pad();
168 /* Store state in digest */
169 memcpy(digest, State, 16);
170 /* Zeroize sensitive information. */
171 Init();
172
173 return digest;
174}
175
176char* MD5::End(char* buf) {
177 static const char hex[] = "0123456789abcdef";

Callers 2

CalcRawMethod · 0.45
Y_UNIT_TESTFunction · 0.45

Calls 2

PadFunction · 0.85
InitFunction · 0.50

Tested by

no test coverage detected