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