Searched refs:hash_update (Results 1 – 11 of 11) sorted by relevance
/PHP-8.0/ext/hash/tests/ |
H A D | reuse.phpt | 9 hash_update($h, 'foo'); 17 hash_update(): Argument #1 ($context) must be a valid Hash Context resource
|
H A D | hmac-md5.phpt | 7 hash_update($ctx, 'Hi There'); 11 hash_update($ctx, 'what do ya want for nothing?');
|
H A D | hash_serialize_003.phpt | 233 hash_update($ctx, "Can’t tell if this is true or dream"); 249 hash_update($ctx, "I can't remember anything");
|
H A D | hash_serialize_001.phpt | 15 hash_update($ctx1, "I can't remember anything"); 28 hash_update($orig, "I can't remember anything"); 32 hash_update($fresh, "I can't remember anythingCan’t tell if this is true or dream"); 36 hash_update($copy, "Can’t tell if this is true or dream");
|
H A D | hash-clone.phpt | 11 hash_update($orig, "I can't remember anything"); 21 hash_update($orig, "I can't remember anything"); 25 hash_update($copy, "Can’t tell if this is true or dream");
|
H A D | hash_copy_001.phpt | 11 hash_update($orig, "I can't remember anything"); 21 hash_update($orig, "I can't remember anything"); 25 hash_update($copy, "Can’t tell if this is true or dream");
|
/PHP-8.0/ext/hash/ |
H A D | hash.c | 384 ops->hash_update(context, (unsigned char *) buf, n); in php_hash_do_hash() 472 ops->hash_update(context, key, key_len); in php_hash_hmac_prep_key() 483 ops->hash_update(context, key, ops->block_size); in php_hash_hmac_round() 484 ops->hash_update(context, data, data_size); in php_hash_hmac_round() 526 ops->hash_update(context, K, ops->block_size); in php_hash_do_hash_hmac() 528 ops->hash_update(context, (unsigned char *) buf, n); in php_hash_do_hash_hmac() 677 PHP_FUNCTION(hash_update) in PHP_FUNCTION() argument 939 ops->hash_update(context, K, ops->block_size); in PHP_FUNCTION() 942 ops->hash_update(context, digest, ops->digest_size); in PHP_FUNCTION() 949 ops->hash_update(context, c, 1); in PHP_FUNCTION() [all …]
|
H A D | hash_arginfo.h | 138 ZEND_FUNCTION(hash_update); 174 ZEND_FE(hash_update, arginfo_hash_update)
|
H A D | hash.stub.php | 15 function hash_update(HashContext $context, string $data): bool {} function
|
H A D | php_hash.h | 44 php_hash_update_func_t hash_update; member
|
/PHP-8.0/ |
H A D | NEWS | 82 . Fixed bug #81738: buffer overflow in hash_update() on long parameter.
|
Completed in 22 milliseconds