ctx1              129 ext/standard/php_crypt_r.c 	HCRYPTHASH ctx, ctx1;
ctx1              187 ext/standard/php_crypt_r.c 	if(!CryptCreateHash(hCryptProv, CALG_MD5, 0, 0, &ctx1)) {
ctx1              190 ext/standard/php_crypt_r.c 	if(!CryptHashData(ctx1, (BYTE *)pw, pwl, 0)) {
ctx1              193 ext/standard/php_crypt_r.c 	if(!CryptHashData(ctx1, (BYTE *)sp, sl, 0)) {
ctx1              196 ext/standard/php_crypt_r.c 	if(!CryptHashData(ctx1, (BYTE *)pw, pwl, 0)) {
ctx1              201 ext/standard/php_crypt_r.c 	CryptGetHashParam(ctx1, HP_HASHVAL, final, &dwHashLen, 0);
ctx1              234 ext/standard/php_crypt_r.c 		if(!CryptCreateHash(hCryptProv, CALG_MD5, 0, 0, &ctx1)) {
ctx1              239 ext/standard/php_crypt_r.c 			if(!CryptHashData(ctx1, (BYTE *)pw, pwl, 0)) {
ctx1              243 ext/standard/php_crypt_r.c 			if(!CryptHashData(ctx1, (BYTE *)final, 16, 0)) {
ctx1              249 ext/standard/php_crypt_r.c 			if(!CryptHashData(ctx1, (BYTE *)sp, sl, 0)) {
ctx1              255 ext/standard/php_crypt_r.c 			if(!CryptHashData(ctx1, (BYTE *)pw, pwl, 0)) {
ctx1              261 ext/standard/php_crypt_r.c 			if(!CryptHashData(ctx1, (BYTE *)final, 16, 0)) {
ctx1              265 ext/standard/php_crypt_r.c 			if(!CryptHashData(ctx1, (BYTE *)pw, pwl, 0)) {
ctx1              272 ext/standard/php_crypt_r.c 		CryptGetHashParam(ctx1, HP_HASHVAL, final, &dwHashLen, 0);
ctx1              273 ext/standard/php_crypt_r.c 		if(!(CryptDestroyHash(ctx1))) {
ctx1              278 ext/standard/php_crypt_r.c 	ctx1 = (HCRYPTHASH) NULL;
ctx1              295 ext/standard/php_crypt_r.c 	if (ctx1) {
ctx1              296 ext/standard/php_crypt_r.c 		if (!CryptDestroyHash(ctx1)) {
ctx1              325 ext/standard/php_crypt_r.c 	PHP_MD5_CTX	ctx, ctx1;
ctx1              357 ext/standard/php_crypt_r.c 	PHP_MD5Init(&ctx1);
ctx1              358 ext/standard/php_crypt_r.c 	PHP_MD5Update(&ctx1, (const unsigned char *)pw, pwl);
ctx1              359 ext/standard/php_crypt_r.c 	PHP_MD5Update(&ctx1, (const unsigned char *)sp, sl);
ctx1              360 ext/standard/php_crypt_r.c 	PHP_MD5Update(&ctx1, (const unsigned char *)pw, pwl);
ctx1              361 ext/standard/php_crypt_r.c 	PHP_MD5Final(final, &ctx1);
ctx1              389 ext/standard/php_crypt_r.c 		PHP_MD5Init(&ctx1);
ctx1              392 ext/standard/php_crypt_r.c 			PHP_MD5Update(&ctx1, (const unsigned char *)pw, pwl);
ctx1              394 ext/standard/php_crypt_r.c 			PHP_MD5Update(&ctx1, final, 16);
ctx1              397 ext/standard/php_crypt_r.c 			PHP_MD5Update(&ctx1, (const unsigned char *)sp, sl);
ctx1              400 ext/standard/php_crypt_r.c 			PHP_MD5Update(&ctx1, (const unsigned char *)pw, pwl);
ctx1              403 ext/standard/php_crypt_r.c 			PHP_MD5Update(&ctx1, final, 16);
ctx1              405 ext/standard/php_crypt_r.c 			PHP_MD5Update(&ctx1, (const unsigned char *)pw, pwl);
ctx1              407 ext/standard/php_crypt_r.c 		PHP_MD5Final(final, &ctx1);