summaryrefslogtreecommitdiff
path: root/ext/hash/php_hash_joaat.h
diff options
context:
space:
mode:
authorMartin Jansen <mj@php.net>2010-03-28 10:01:02 +0000
committerMartin Jansen <mj@php.net>2010-03-28 10:01:02 +0000
commit71ec12cc78f2a69e9aa591df3b68850fcc0a3d81 (patch)
tree9d343b8f12f8659f433cddb33ca9d4ecda1c89bb /ext/hash/php_hash_joaat.h
parent675ae35a8cfa209a7bf0b106a6eb71ef7bf48544 (diff)
downloadphp-git-71ec12cc78f2a69e9aa591df3b68850fcc0a3d81.tar.gz
JOAAT hashing now supports incremental hashing.
Diffstat (limited to 'ext/hash/php_hash_joaat.h')
-rw-r--r--ext/hash/php_hash_joaat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/hash/php_hash_joaat.h b/ext/hash/php_hash_joaat.h
index 4f1dccc2d8..2bf6d8adf5 100644
--- a/ext/hash/php_hash_joaat.h
+++ b/ext/hash/php_hash_joaat.h
@@ -29,7 +29,7 @@ PHP_HASH_API void PHP_JOAATInit(PHP_JOAAT_CTX *context);
PHP_HASH_API void PHP_JOAATUpdate(PHP_JOAAT_CTX *context, const unsigned char *input, unsigned int inputLen);
PHP_HASH_API void PHP_JOAATFinal(unsigned char digest[16], PHP_JOAAT_CTX * context);
-static php_hash_uint32 joaat_buf(void *buf, size_t len);
+static php_hash_uint32 joaat_buf(void *buf, size_t len, php_hash_uint32 hval);
#endif