Lines Matching refs:final

139 	unsigned char final[16];  in php_md5_crypt_r()  local
200 CryptGetHashParam(ctx1, HP_HASHVAL, final, &dwHashLen, 0); in php_md5_crypt_r()
204 CryptHashData(ctx, final, (DWORD)(pl > 16 ? 16 : pl), 0); in php_md5_crypt_r()
208 ZEND_SECURE_ZERO(final, sizeof(final)); in php_md5_crypt_r()
213 CryptHashData(ctx, (const BYTE *)final, 1, 0); in php_md5_crypt_r()
230 CryptGetHashParam(ctx, HP_HASHVAL, final, &dwHashLen, 0); in php_md5_crypt_r()
242 if(!CryptHashData(ctx1, (BYTE *)final, 16, 0)) { in php_md5_crypt_r()
260 if(!CryptHashData(ctx1, (BYTE *)final, 16, 0)) { in php_md5_crypt_r()
271 CryptGetHashParam(ctx1, HP_HASHVAL, final, &dwHashLen, 0); in php_md5_crypt_r()
281 l = (final[ 0]<<16) | (final[ 6]<<8) | final[12]; to64(p,l,4); p += 4; in php_md5_crypt_r()
282 l = (final[ 1]<<16) | (final[ 7]<<8) | final[13]; to64(p,l,4); p += 4; in php_md5_crypt_r()
283 l = (final[ 2]<<16) | (final[ 8]<<8) | final[14]; to64(p,l,4); p += 4; in php_md5_crypt_r()
284 l = (final[ 3]<<16) | (final[ 9]<<8) | final[15]; to64(p,l,4); p += 4; in php_md5_crypt_r()
285 l = (final[ 4]<<16) | (final[10]<<8) | final[ 5]; to64(p,l,4); p += 4; in php_md5_crypt_r()
286 l = final[11]; to64(p,l,2); p += 2; in php_md5_crypt_r()
290 ZEND_SECURE_ZERO(final, sizeof(final)); in php_md5_crypt_r()
322 unsigned char final[16]; in php_md5_crypt_r() local
360 PHP_MD5Final(final, &ctx1); in php_md5_crypt_r()
363 PHP_MD5Update(&ctx, final, (unsigned int)(pl > 16 ? 16 : pl)); in php_md5_crypt_r()
366 ZEND_SECURE_ZERO(final, sizeof(final)); in php_md5_crypt_r()
371 PHP_MD5Update(&ctx, final, 1); in php_md5_crypt_r()
380 PHP_MD5Final(final, &ctx); in php_md5_crypt_r()
393 PHP_MD5Update(&ctx1, final, 16); in php_md5_crypt_r()
402 PHP_MD5Update(&ctx1, final, 16); in php_md5_crypt_r()
406 PHP_MD5Final(final, &ctx1); in php_md5_crypt_r()
411 l = (final[ 0]<<16) | (final[ 6]<<8) | final[12]; to64(p,l,4); p += 4; in php_md5_crypt_r()
412 l = (final[ 1]<<16) | (final[ 7]<<8) | final[13]; to64(p,l,4); p += 4; in php_md5_crypt_r()
413 l = (final[ 2]<<16) | (final[ 8]<<8) | final[14]; to64(p,l,4); p += 4; in php_md5_crypt_r()
414 l = (final[ 3]<<16) | (final[ 9]<<8) | final[15]; to64(p,l,4); p += 4; in php_md5_crypt_r()
415 l = (final[ 4]<<16) | (final[10]<<8) | final[ 5]; to64(p,l,4); p += 4; in php_md5_crypt_r()
416 l = final[11] ; to64(p,l,2); p += 2; in php_md5_crypt_r()
420 ZEND_SECURE_ZERO(final, sizeof(final)); in php_md5_crypt_r()