Lines Matching refs:ctx1
48 MD5_CTX ctx,ctx1; in crypt_md5() local
79 MD5Init(&ctx1); in crypt_md5()
80 MD5Update(&ctx1, (const u_char *)pw, strlen(pw)); in crypt_md5()
81 MD5Update(&ctx1, (const u_char *)salt, (u_int)sl); in crypt_md5()
82 MD5Update(&ctx1, (const u_char *)pw, strlen(pw)); in crypt_md5()
83 MD5Final(final, &ctx1); in crypt_md5()
111 MD5Init(&ctx1); in crypt_md5()
113 MD5Update(&ctx1, (const u_char *)pw, strlen(pw)); in crypt_md5()
115 MD5Update(&ctx1, (const u_char *)final, MD5_SIZE); in crypt_md5()
118 MD5Update(&ctx1, (const u_char *)salt, (u_int)sl); in crypt_md5()
121 MD5Update(&ctx1, (const u_char *)pw, strlen(pw)); in crypt_md5()
124 MD5Update(&ctx1, (const u_char *)final, MD5_SIZE); in crypt_md5()
126 MD5Update(&ctx1, (const u_char *)pw, strlen(pw)); in crypt_md5()
127 MD5Final(final, &ctx1); in crypt_md5()