summaryrefslogtreecommitdiff
path: root/UPGRADING
diff options
context:
space:
mode:
authorEddie Kohler <ekohler@gmail.com>2020-06-08 08:29:42 -0400
committerNikita Popov <nikita.ppv@gmail.com>2020-06-30 14:30:33 +0200
commitada776c84cad810e69c0d9764cbef1628744cdd4 (patch)
tree805f094128d3708a891c9355679d4233cc6eb79a /UPGRADING
parentdc85be5456ec2ca081ef6e94c38cbf3d78addee2 (diff)
downloadphp-git-ada776c84cad810e69c0d9764cbef1628744cdd4.tar.gz
Make HashContexts serializable.
* Modify php_hash_ops to contain the algorithm name and serialize and unserialize methods. * Implement __serialize and __unserialize magic methods on HashContext. Note that serialized HashContexts are not necessarily portable between PHP versions or from architecture to architecture. (Most are, though Keccak and slow SHA3s are not.) An exception is thrown when an unsupported serialization is attempted. Because of security concerns, HASH_HMAC contexts are not currently serializable; attempting to serialize one throws an exception. Serialization exposes the state of HashContext memory, so ensure that memory is zeroed before use by allocating it with a new php_hash_alloc_context function. Performance impact is negligible. Some hash internal states have logical pointers into a buffer, or sponge, that absorbs input provided in bytes rather than chunks. The unserialize functions for these hash functions must validate that the logical pointers are all within bounds, lest future hash operations cause out-of-bounds memory accesses. * Adler32, CRC32, FNV, joaat: simple state, no buffer positions * Gost, MD2, SHA3, Snefru, Tiger, Whirlpool: buffer positions must be validated * MD4, MD5, SHA1, SHA2, haval, ripemd: buffer positions encoded bitwise, forced to within bounds on use; no need to validate
Diffstat (limited to 'UPGRADING')
-rw-r--r--UPGRADING10
1 files changed, 7 insertions, 3 deletions
diff --git a/UPGRADING b/UPGRADING
index de0eebd055..f662a6625a 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -568,14 +568,18 @@ PHP 8.0 UPGRADE NOTES
. Added DateTime::createFromInterface() and
DateTimeImmutable::createFromInterface().
+- Dom:
+ . Introduce DOMParentNode and DOMChildNode with new traversal and
+ manipulation APIs.
+ RFC: https://wiki.php.net/rfc/dom_living_standard_api
+
- Enchant:
. enchant_dict_add()
. enchant_dict_is_added()
. LIBENCHANT_VERSION macro
-- dom:
- . Introduce DOMParentNode and DOMChildNode with new traversal and manipulation APIs
- RFC: https://wiki.php.net/rfc/dom_living_standard_api
+- Hash:
+ . HashContext objects can now be serialized.
- Opcache:
. If the opcache.record_warnings ini setting is enabled, opcache will record