MCPcopy Create free account
hub / github.com/SNAS/openbmp / raw_digest

Method raw_digest

Server/src/md5.cpp:242–254  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

240
241
242unsigned char *MD5::raw_digest(){
243
244 uint1 *s = new uint1[16];
245
246 if (!finalized){
247 cerr << "MD5::raw_digest: Can't get digest if you haven't "<<
248 "finalized the digest!" <<endl;
249 return ( (unsigned char*) "");
250 }
251
252 memcpy(s, digest, 16);
253 return s;
254}
255
256
257

Callers 11

runServerFunction · 0.80
genNodeHashIdMethod · 0.80
update_PeerMethod · 0.80
update_baseAttributeMethod · 0.80
update_L3VpnMethod · 0.80
update_eVPNMethod · 0.80
update_unicastPrefixMethod · 0.80
update_LsLinkMethod · 0.80
update_LsPrefixMethod · 0.80
hashRouterMethod · 0.80
hashRouterMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected