Lines Matching refs:ctx1
80 MD5_CTX ctx, ctx1; in crypt_genhash_impl() local
109 MD5Init(&ctx1); in crypt_genhash_impl()
110 MD5Update(&ctx1, (uchar_t *)plaintext, strlen(plaintext)); in crypt_genhash_impl()
111 MD5Update(&ctx1, sp, sl); in crypt_genhash_impl()
112 MD5Update(&ctx1, (uchar_t *)plaintext, strlen(plaintext)); in crypt_genhash_impl()
113 MD5Final(final, &ctx1); in crypt_genhash_impl()
142 MD5Init(&ctx1); in crypt_genhash_impl()
144 MD5Update(&ctx1, (uchar_t *)plaintext, in crypt_genhash_impl()
147 MD5Update(&ctx1, final, 16); in crypt_genhash_impl()
150 MD5Update(&ctx1, sp, sl); in crypt_genhash_impl()
153 MD5Update(&ctx1, (uchar_t *)plaintext, in crypt_genhash_impl()
157 MD5Update(&ctx1, final, 16); in crypt_genhash_impl()
159 MD5Update(&ctx1, (uchar_t *)plaintext, in crypt_genhash_impl()
161 MD5Final(final, &ctx1); in crypt_genhash_impl()