Lines Matching refs:final

140 	unsigned char final[16];  in php_md5_crypt_r()  local
201 CryptGetHashParam(ctx1, HP_HASHVAL, final, &dwHashLen, 0); in php_md5_crypt_r()
205 CryptHashData(ctx, final, (DWORD)(pl > 16 ? 16 : pl), 0); in php_md5_crypt_r()
209 ZEND_SECURE_ZERO(final, sizeof(final)); in php_md5_crypt_r()
214 CryptHashData(ctx, (const BYTE *)final, 1, 0); in php_md5_crypt_r()
231 CryptGetHashParam(ctx, HP_HASHVAL, final, &dwHashLen, 0); in php_md5_crypt_r()
243 if(!CryptHashData(ctx1, (BYTE *)final, 16, 0)) { in php_md5_crypt_r()
261 if(!CryptHashData(ctx1, (BYTE *)final, 16, 0)) { in php_md5_crypt_r()
272 CryptGetHashParam(ctx1, HP_HASHVAL, final, &dwHashLen, 0); in php_md5_crypt_r()
282 l = (final[ 0]<<16) | (final[ 6]<<8) | final[12]; to64(p,l,4); p += 4; in php_md5_crypt_r()
283 l = (final[ 1]<<16) | (final[ 7]<<8) | final[13]; to64(p,l,4); p += 4; in php_md5_crypt_r()
284 l = (final[ 2]<<16) | (final[ 8]<<8) | final[14]; to64(p,l,4); p += 4; in php_md5_crypt_r()
285 l = (final[ 3]<<16) | (final[ 9]<<8) | final[15]; to64(p,l,4); p += 4; in php_md5_crypt_r()
286 l = (final[ 4]<<16) | (final[10]<<8) | final[ 5]; to64(p,l,4); p += 4; in php_md5_crypt_r()
287 l = final[11]; to64(p,l,2); p += 2; in php_md5_crypt_r()
291 ZEND_SECURE_ZERO(final, sizeof(final)); in php_md5_crypt_r()
323 unsigned char final[16]; in php_md5_crypt_r() local
361 PHP_MD5Final(final, &ctx1); in php_md5_crypt_r()
364 PHP_MD5Update(&ctx, final, (unsigned int)(pl > 16 ? 16 : pl)); in php_md5_crypt_r()
367 memset(final, 0, sizeof(final)); in php_md5_crypt_r()
372 PHP_MD5Update(&ctx, final, 1); in php_md5_crypt_r()
381 PHP_MD5Final(final, &ctx); in php_md5_crypt_r()
394 PHP_MD5Update(&ctx1, final, 16); in php_md5_crypt_r()
403 PHP_MD5Update(&ctx1, final, 16); in php_md5_crypt_r()
407 PHP_MD5Final(final, &ctx1); in php_md5_crypt_r()
412 l = (final[ 0]<<16) | (final[ 6]<<8) | final[12]; to64(p,l,4); p += 4; in php_md5_crypt_r()
413 l = (final[ 1]<<16) | (final[ 7]<<8) | final[13]; to64(p,l,4); p += 4; in php_md5_crypt_r()
414 l = (final[ 2]<<16) | (final[ 8]<<8) | final[14]; to64(p,l,4); p += 4; in php_md5_crypt_r()
415 l = (final[ 3]<<16) | (final[ 9]<<8) | final[15]; to64(p,l,4); p += 4; in php_md5_crypt_r()
416 l = (final[ 4]<<16) | (final[10]<<8) | final[ 5]; to64(p,l,4); p += 4; in php_md5_crypt_r()
417 l = final[11] ; to64(p,l,2); p += 2; in php_md5_crypt_r()
421 ZEND_SECURE_ZERO(final, sizeof(final)); in php_md5_crypt_r()