MCPcopy Create free account
hub / github.com/OpenSIPS/opensips / MD5Init

Function MD5Init

md5.c:110–119  ·  view source on GitHub ↗

MD5 initialization. Begins an MD5 operation, writing a new context. MD5_CTX *context - context */

Source from the content-addressed store, hash-verified

108 MD5_CTX *context - context
109 */
110void MD5Init (MD5_CTX *context)
111{
112 context->count[0] = context->count[1] = 0;
113 /* Load magic initialization constants.
114*/
115 context->state[0] = 0x67452301;
116 context->state[1] = 0xefcdab89;
117 context->state[2] = 0x98badcfe;
118 context->state[3] = 0x10325476;
119}
120
121/* MD5 block update operation. Continues an MD5 message-digest
122 operation, processing another message block, and updating the

Callers 9

MD5StringArrayFunction · 0.85
MD5FileFunction · 0.85
compute_md5Function · 0.85
dr_reload_data_headFunction · 0.85
trie_reload_data_headFunction · 0.85
digest_calc_HA1Function · 0.85
digest_calc_HA1sessFunction · 0.85
digest_calc_HA2Function · 0.85
_digest_calc_responseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected