Searched refs:hash_init (Results 1 – 19 of 19) sorted by relevance
/PHP-8.0/ext/hash/tests/ |
H A D | hash_init_error.phpt | 2 Hash: hash_init() function - errors test 5 echo "*** Testing hash_init(): error conditions ***\n"; 7 echo "\n-- Testing hash_init() function with unknown algorithms --\n"; 9 var_dump(hash_init('dummy')); 17 var_dump(hash_init('crc32', HASH_HMAC)); 25 var_dump(hash_init('md5', HASH_HMAC)); 32 var_dump(hash_init('md5', HASH_HMAC, null)); 41 *** Testing hash_init(): error conditions *** 43 -- Testing hash_init() function with unknown algorithms -- 44 hash_init(): Argument #1 ($algo) must be a valid hashing algorithm [all …]
|
H A D | hmac-md5.phpt | 6 $ctx = hash_init('md5',HASH_HMAC,str_repeat(chr(0x0b), 16)); 10 $ctx = hash_init('md5',HASH_HMAC,'Jefe');
|
H A D | bug81714.phpt | 5 $h = hash_init('md5');
|
H A D | reuse.phpt | 6 $h = hash_init('md5');
|
H A D | bug52240.phpt | 6 $h = hash_init('md5', HASH_HMAC, '123456');
|
H A D | hash_update_stream.phpt | 11 $ctx = hash_init('md5');
|
H A D | hash_update_file.phpt | 10 $ctx = hash_init('md5');
|
H A D | hash_update_stream_basic_001.phpt | 24 $ctx = hash_init('md5');
|
H A D | hash_serialize_004.phpt | 7 $ctx = hash_init("sha256");
|
H A D | hash_serialize_001.phpt | 10 $ctx0 = hash_init($algo); 27 $orig = hash_init($algo); 31 $fresh = hash_init($algo);
|
H A D | hash_serialize_003.phpt | 248 $ctx = hash_init($algo);
|
H A D | hash-clone.phpt | 10 $orig = hash_init($algo); 20 $orig = hash_init($algo);
|
H A D | hash_copy_001.phpt | 10 $orig = hash_init($algo); 20 $orig = hash_init($algo);
|
H A D | hash_serialize_002.phpt | 16 $ctx0 = hash_init($algo, HASH_HMAC, $key);
|
/PHP-8.0/sapi/fuzzer/ |
H A D | generate_unserializehash_corpus.php | 7 $ctx = hash_init($algo);
|
/PHP-8.0/ext/hash/ |
H A D | hash.c | 377 ops->hash_init(context); in php_hash_do_hash() 471 ops->hash_init(context); in php_hash_hmac_prep_key() 482 ops->hash_init(context); in php_hash_hmac_round() 525 ops->hash_init(context); in php_hash_do_hash_hmac() 601 PHP_FUNCTION(hash_init) in PHP_FUNCTION() argument 635 ops->hash_init(context); in PHP_FUNCTION() 653 ops->hash_init(context); in PHP_FUNCTION() 918 ops->hash_init(context); in PHP_FUNCTION() 938 ops->hash_init(context); in PHP_FUNCTION() 1010 ops->hash_init(context); in PHP_FUNCTION() [all …]
|
H A D | hash_arginfo.h | 137 ZEND_FUNCTION(hash_init); 173 ZEND_FE(hash_init, arginfo_hash_init)
|
H A D | hash.stub.php | 13 function hash_init(string $algo, int $flags = 0, string $key = ""): HashContext {} function
|
H A D | php_hash.h | 43 php_hash_init_func_t hash_init; member
|
Completed in 46 milliseconds