summaryrefslogtreecommitdiff
path: root/ext/hash/php_hash_crc32.h
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 /ext/hash/php_hash_crc32.h
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 'ext/hash/php_hash_crc32.h')
-rw-r--r--ext/hash/php_hash_crc32.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/hash/php_hash_crc32.h b/ext/hash/php_hash_crc32.h
index 346011e417..4c1b0fedc9 100644
--- a/ext/hash/php_hash_crc32.h
+++ b/ext/hash/php_hash_crc32.h
@@ -22,6 +22,7 @@
typedef struct {
uint32_t state;
} PHP_CRC32_CTX;
+#define PHP_CRC32_SPEC "l."
PHP_HASH_API void PHP_CRC32Init(PHP_CRC32_CTX *context);
PHP_HASH_API void PHP_CRC32Update(PHP_CRC32_CTX *context, const unsigned char *input, size_t len);