MCPcopy Create free account
hub / github.com/F-Stack/f-stack / MD5Init

Function MD5Init

freebsd/kern/md5c.c:133–145  ·  view source on GitHub ↗
(context)

Source from the content-addressed store, hash-verified

131/* MD5 initialization. Begins an MD5 operation, writing a new context. */
132
133void
134MD5Init (context)
135 MD5_CTX *context;
136{
137
138 context->count[0] = context->count[1] = 0;
139
140 /* Load magic initialization constants. */
141 context->state[0] = 0x67452301;
142 context->state[1] = 0xefcdab89;
143 context->state[2] = 0x98badcfe;
144 context->state[3] = 0x10325476;
145}
146
147/*
148 * MD5 block update operation. Continues an MD5 message-digest

Callers 8

ip_dstlist.cFile · 0.85
pf_setup_pfsync_matchingFunction · 0.85
pf_tcp_issFunction · 0.85
get_rand_ifidFunction · 0.85
generate_tmp_ifidFunction · 0.85
in6_nigroup0Function · 0.85
sppp_chap_inputFunction · 0.85
tcp_signature_computeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected