Searched refs:hash_init (Results 1 – 13 of 13) sorted by relevance
/PHP-7.3/ext/hash/tests/ |
H A D | hash_init_error.phpt | 2 hash_init() function - errors test 9 echo "*** Testing hash_init(): error conditions ***\n"; 11 echo "-- Testing hash_init() function with no parameters --\n"; 12 var_dump(hash_init()); 15 var_dump(hash_init('dummy')); 18 var_dump(hash_init('crc32', HASH_HMAC)); 21 var_dump(hash_init('md5', HASH_HMAC)); 22 var_dump(hash_init('md5', HASH_HMAC, null)); 25 *** Testing hash_init(): error conditions *** 26 -- Testing hash_init() function with no parameters -- [all …]
|
H A D | hmac-md5.phpt | 8 $ctx = hash_init('md5',HASH_HMAC,str_repeat(chr(0x0b), 16)); 12 $ctx = hash_init('md5',HASH_HMAC,'Jefe');
|
H A D | serialize-context.phpt | 8 $h = hash_init('md5');
|
H A D | reuse.phpt | 8 $h = hash_init('md5');
|
H A D | bug52240.phpt | 8 $h = hash_init('md5', HASH_HMAC, '123456');
|
H A D | hash_copy_002.phpt | 8 $r = hash_init("md5");
|
H A D | hash_update_stream.phpt | 15 $ctx = hash_init('md5');
|
H A D | hash_update_file.phpt | 14 $ctx = hash_init('md5');
|
H A D | hash-clone.phpt | 12 $orig = hash_init($algo); 22 $orig = hash_init($algo);
|
H A D | hash_copy_001.phpt | 12 $orig = hash_init($algo); 22 $orig = hash_init($algo);
|
/PHP-7.3/ext/hash/ |
H A D | README | 14 $context = hash_init($algoname);
|
H A D | php_hash.h | 38 php_hash_init_func_t hash_init; member 140 PHP_FUNCTION(hash_init);
|
H A D | hash.c | 147 ops->hash_init(context); in php_hash_do_hash() 215 ops->hash_init(context); in php_hash_hmac_prep_key() 226 ops->hash_init(context); in php_hash_hmac_round() 280 ops->hash_init(context); in php_hash_do_hash_hmac() 367 ops->hash_init(context); in php_hashcontext_ctor() 385 ops->hash_init(context); in php_hashcontext_ctor() 402 PHP_FUNCTION(hash_init) in PHP_FUNCTION() argument 660 ops->hash_init(context); in PHP_FUNCTION() 680 ops->hash_init(context); in PHP_FUNCTION() 757 ops->hash_init(context); in PHP_FUNCTION() [all …]
|
Completed in 42 milliseconds