MCPcopy Create free account
hub / github.com/1a1a11a/libCacheSim / md5_init

Function md5_init

example/cacheCluster/md5.c:312–320  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

310}
311
312void
313md5_init(md5_state_t *pms)
314{
315 pms->count[0] = pms->count[1] = 0;
316 pms->abcd[0] = 0x67452301;
317 pms->abcd[1] = /*0xefcdab89*/ T_MASK ^ 0x10325476;
318 pms->abcd[2] = /*0x98badcfe*/ T_MASK ^ 0x67452301;
319 pms->abcd[3] = 0x10325476;
320}
321
322void
323md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes)

Callers 2

md5_digestFunction · 0.70
ketama_md5_digestFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected