Searched refs:hash_update (Results 1 – 16 of 16) sorted by relevance
/PHP-8.1/ext/hash/tests/ |
H A D | murmurhash3_seed.phpt | 7 hash_update($ctx, "Two"); 8 hash_update($ctx, " hashes"); 9 hash_update($ctx, " meet"); 10 hash_update($ctx, " in"); 11 hash_update($ctx, " a"); 12 hash_update($ctx, " bar."); 20 hash_update($ctx, "Two"); 23 hash_update($ctx, " in"); 24 hash_update($ctx, " a"); 33 hash_update($ctx, "Two"); [all …]
|
H A D | murmurhash3.phpt | 20 hash_update($ctx, "hello"); 21 hash_update($ctx, " there"); 27 hash_update($ctx, "hello"); 28 hash_update($ctx, " there"); 34 hash_update($ctx, "hello"); 35 hash_update($ctx, " there");
|
H A D | xxhash_seed.phpt | 9 hash_update($ctx, "Lorem"); 10 hash_update($ctx, " ipsum dolor"); 11 hash_update($ctx, " sit amet,"); 12 hash_update($ctx, " consectetur adipiscing elit.");
|
H A D | xxhash_secret.phpt | 37 hash_update($ctx, "Lorem"); 38 hash_update($ctx, " ipsum dolor"); 39 hash_update($ctx, " sit amet,"); 40 hash_update($ctx, " consectetur adipiscing elit.");
|
H A D | reuse.phpt | 9 hash_update($h, 'foo'); 17 hash_update(): Argument #1 ($context) must be a valid, non-finalized HashContext
|
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 | xxhash_unserialize_memsize.phpt | 10 hash_update($hash, ''); 20 hash_update($hash, '');
|
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 | 16 hash_update($ctx1, "I can't remember anything"); 30 hash_update($orig, "I can't remember anything"); 34 hash_update($fresh, "I can't remember anythingCan’t tell if this is true or dream"); 38 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.1/ext/hash/ |
H A D | hash.c | 391 ops->hash_update(context, (unsigned char *) buf, n); in php_hash_do_hash() 483 ops->hash_update(context, key, key_len); in php_hash_hmac_prep_key() 494 ops->hash_update(context, key, ops->block_size); in php_hash_hmac_round() 495 ops->hash_update(context, data, data_size); in php_hash_hmac_round() 537 ops->hash_update(context, K, ops->block_size); in php_hash_do_hash_hmac() 539 ops->hash_update(context, (unsigned char *) buf, n); in php_hash_do_hash_hmac() 689 PHP_FUNCTION(hash_update) in PHP_FUNCTION() argument 955 ops->hash_update(context, K, ops->block_size); in PHP_FUNCTION() 958 ops->hash_update(context, digest, ops->digest_size); in PHP_FUNCTION() 965 ops->hash_update(context, c, 1); in PHP_FUNCTION() [all …]
|
H A D | hash.stub.php | 20 function hash_update(HashContext $context, string $data): bool {} function
|
H A D | hash_arginfo.h | 142 ZEND_FUNCTION(hash_update); 178 ZEND_FE(hash_update, arginfo_hash_update)
|
H A D | php_hash.h | 44 php_hash_update_func_t hash_update; member
|
/PHP-8.1/ |
H A D | NEWS | 993 . Fixed bug #81738: buffer overflow in hash_update() on long parameter.
|
Completed in 45 milliseconds