summaryrefslogtreecommitdiff
path: root/ext/hash/hash_md.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/hash/hash_md.c')
-rw-r--r--ext/hash/hash_md.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/ext/hash/hash_md.c b/ext/hash/hash_md.c
index 073715d196..06afc4a08e 100644
--- a/ext/hash/hash_md.c
+++ b/ext/hash/hash_md.c
@@ -28,7 +28,8 @@ const php_hash_ops php_hash_md5_ops = {
(php_hash_copy_func_t) php_hash_copy,
16,
64,
- sizeof(PHP_MD5_CTX)
+ sizeof(PHP_MD5_CTX),
+ 1
};
const php_hash_ops php_hash_md4_ops = {
@@ -38,7 +39,8 @@ const php_hash_ops php_hash_md4_ops = {
(php_hash_copy_func_t) php_hash_copy,
16,
64,
- sizeof(PHP_MD4_CTX)
+ sizeof(PHP_MD4_CTX),
+ 1
};
const php_hash_ops php_hash_md2_ops = {
@@ -48,7 +50,8 @@ const php_hash_ops php_hash_md2_ops = {
(php_hash_copy_func_t) php_hash_copy,
16,
16,
- sizeof(PHP_MD2_CTX)
+ sizeof(PHP_MD2_CTX),
+ 1
};
/* MD common stuff */