Lines Matching refs:ctx1
107 PHP_MD5_CTX ctx, ctx1; in php_md5_crypt_r() local
138 PHP_MD5Init(&ctx1); in php_md5_crypt_r()
139 PHP_MD5Update(&ctx1, (const unsigned char *)pw, pwl); in php_md5_crypt_r()
140 PHP_MD5Update(&ctx1, (const unsigned char *)sp, sl); in php_md5_crypt_r()
141 PHP_MD5Update(&ctx1, (const unsigned char *)pw, pwl); in php_md5_crypt_r()
142 PHP_MD5Final(final, &ctx1); in php_md5_crypt_r()
170 PHP_MD5Init(&ctx1); in php_md5_crypt_r()
173 PHP_MD5Update(&ctx1, (const unsigned char *)pw, pwl); in php_md5_crypt_r()
175 PHP_MD5Update(&ctx1, final, 16); in php_md5_crypt_r()
178 PHP_MD5Update(&ctx1, (const unsigned char *)sp, sl); in php_md5_crypt_r()
181 PHP_MD5Update(&ctx1, (const unsigned char *)pw, pwl); in php_md5_crypt_r()
184 PHP_MD5Update(&ctx1, final, 16); in php_md5_crypt_r()
186 PHP_MD5Update(&ctx1, (const unsigned char *)pw, pwl); in php_md5_crypt_r()
188 PHP_MD5Final(final, &ctx1); in php_md5_crypt_r()