summaryrefslogtreecommitdiff
path: root/ext/hash/php_hash_joaat.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/hash/php_hash_joaat.h')
-rw-r--r--ext/hash/php_hash_joaat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/hash/php_hash_joaat.h b/ext/hash/php_hash_joaat.h
index 9d2c7be2db..97a76daff9 100644
--- a/ext/hash/php_hash_joaat.h
+++ b/ext/hash/php_hash_joaat.h
@@ -22,14 +22,14 @@
#define PHP_HASH_JOAAT_H
typedef struct {
- php_hash_uint32 state;
+ uint32_t state;
} PHP_JOAAT_CTX;
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, php_hash_uint32 hval);
+static uint32_t joaat_buf(void *buf, size_t len, uint32_t hval);
#endif