Lines Matching refs:ctx1
57 MD5_CTX ctx, ctx1; in md5_crypt() local
92 MD5_Init(&ctx1); in md5_crypt()
93 MD5_Update(&ctx1, pw, strlen(pw)); in md5_crypt()
94 MD5_Update(&ctx1, sp, sl); in md5_crypt()
95 MD5_Update(&ctx1, pw, strlen(pw)); in md5_crypt()
96 MD5_Final(final, &ctx1); in md5_crypt()
122 MD5_Init(&ctx1); in md5_crypt()
124 MD5_Update(&ctx1, pw, strlen(pw)); in md5_crypt()
126 MD5_Update(&ctx1, final, 16); in md5_crypt()
129 MD5_Update(&ctx1, sp, sl); in md5_crypt()
132 MD5_Update(&ctx1, pw, strlen(pw)); in md5_crypt()
135 MD5_Update(&ctx1, final, 16); in md5_crypt()
137 MD5_Update(&ctx1, pw, strlen(pw)); in md5_crypt()
139 MD5_Final(final, &ctx1); in md5_crypt()
159 memset(&ctx1, 0, sizeof(ctx1)); in md5_crypt()