Lines Matching defs:ctx1
47 MD5_CTX ctx,ctx1;
78 MD5Init(&ctx1);
79 MD5Update(&ctx1, (const u_char *)pw, strlen(pw));
80 MD5Update(&ctx1, (const u_char *)salt, (u_int)sl);
81 MD5Update(&ctx1, (const u_char *)pw, strlen(pw));
82 MD5Final(final, &ctx1);
110 MD5Init(&ctx1);
112 MD5Update(&ctx1, (const u_char *)pw, strlen(pw));
114 MD5Update(&ctx1, (const u_char *)final, MD5_SIZE);
117 MD5Update(&ctx1, (const u_char *)salt, (u_int)sl);
120 MD5Update(&ctx1, (const u_char *)pw, strlen(pw));
123 MD5Update(&ctx1, (const u_char *)final, MD5_SIZE);
125 MD5Update(&ctx1, (const u_char *)pw, strlen(pw));
126 MD5Final(final, &ctx1);