Home | History | Annotate | Download | only in tcpdump

Lines Matching defs:context

56     MD5_CTX context;
101 MD5_Init(&context); /* init context for 1st pass */
102 MD5_Update(&context, k_ipad, 64); /* start with inner pad */
103 MD5_Update(&context, text, text_len); /* then text of datagram */
104 MD5_Final(digest, &context); /* finish up 1st pass */
109 MD5_Init(&context); /* init context for 2nd pass */
110 MD5_Update(&context, k_opad, 64); /* start with outer pad */
111 MD5_Update(&context, digest, 16); /* then results of 1st hash */
112 MD5_Final(digest, &context); /* finish up 2nd pass */