Searched refs:HashContext (Results 1 – 10 of 10) sorted by relevance
/PHP-8.0/ext/hash/tests/ |
H A D | hash_serialize_002.phpt | 29 HashContext with HASH_HMAC option cannot be serialized 31 HashContext with HASH_HMAC option cannot be serialized 33 HashContext with HASH_HMAC option cannot be serialized 35 HashContext with HASH_HMAC option cannot be serialized 37 HashContext with HASH_HMAC option cannot be serialized 39 HashContext with HASH_HMAC option cannot be serialized 41 HashContext with HASH_HMAC option cannot be serialized 43 HashContext with HASH_HMAC option cannot be serialized 45 HashContext with HASH_HMAC option cannot be serialized 47 HashContext with HASH_HMAC option cannot be serialized [all …]
|
H A D | new-context.phpt | 2 Hash: Attempt to instantiate a HashContext directly 7 new HashContext; 13 Exception: Call to private HashContext::__construct() from global scope
|
H A D | bug81714.phpt | 2 Bug #81714 (segfault when serializing finalized HashContext) 14 string(52) "HashContext for algorithm "md5" cannot be serialized"
|
H A D | hash_serialize_004.phpt | 36 HashContext::__unserialize called on initialized object 40 HashContext with HASH_HMAC option cannot be serialized
|
/PHP-8.0/ext/hash/ |
H A D | hash.stub.php | 13 function hash_init(string $algo, int $flags = 0, string $key = ""): HashContext {} 15 function hash_update(HashContext $context, string $data): bool {} 18 function hash_update_stream(HashContext $context, $stream, int $length = -1): int {} 21 function hash_update_file(HashContext $context, string $filename, $stream_context = null): bool {} 23 function hash_final(HashContext $context, bool $binary = false): string {} 25 function hash_copy(HashContext $context): HashContext {} 49 final class HashContext class
|
H A D | hash_arginfo.h | 30 ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX(arginfo_hash_init, 0, 1, HashContext, 0) 37 ZEND_ARG_OBJ_INFO(0, context, HashContext, 0) 42 ZEND_ARG_OBJ_INFO(0, context, HashContext, 0) 48 ZEND_ARG_OBJ_INFO(0, context, HashContext, 0) 54 ZEND_ARG_OBJ_INFO(0, context, HashContext, 0) 58 ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX(arginfo_hash_copy, 0, 1, HashContext, 0) 59 ZEND_ARG_OBJ_INFO(0, context, HashContext, 0) 163 ZEND_METHOD(HashContext, __construct); 164 ZEND_METHOD(HashContext, __serialize); 165 ZEND_METHOD(HashContext, __unserialize); [all …]
|
H A D | hash.c | 1136 PHP_METHOD(HashContext, __construct) { in PHP_METHOD() argument 1432 PHP_METHOD(HashContext, __serialize) in PHP_METHOD() argument 1480 PHP_METHOD(HashContext, __unserialize) in PHP_METHOD() argument
|
/PHP-8.0/sapi/fuzzer/ |
H A D | README.md | 25 * `php-fuzz-unserializehash`: Fuzzing unserialize() for HashContext objects
|
/PHP-8.0/ |
H A D | NEWS | 364 . Fixed bug #81714 (segfault when serializing finalized HashContext). (cmb)
|
H A D | UPGRADING | 791 . HashContext objects can now be serialized.
|
Completed in 30 milliseconds