summaryrefslogtreecommitdiff
path: root/md4.h
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2013-09-28 09:43:12 +0200
committerNiels Möller <nisse@lysator.liu.se>2013-09-28 09:44:22 +0200
commitcb83bd331e5774027bcab965ccf9bcbe798ad167 (patch)
tree3bbf1e2ee88e1ff1a27c877bd6cd21dc65f1d4a6 /md4.h
parent89755c916c84f722f081b5d53e8472d963cfbfe4 (diff)
downloadnettle-cb83bd331e5774027bcab965ccf9bcbe798ad167.tar.gz
Made hash functions use an uint64_t for the block count.
Diffstat (limited to 'md4.h')
-rw-r--r--md4.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/md4.h b/md4.h
index 5b805c22..a415e021 100644
--- a/md4.h
+++ b/md4.h
@@ -47,7 +47,7 @@ extern "C" {
struct md4_ctx
{
uint32_t state[_MD4_DIGEST_LENGTH];
- uint32_t count_low, count_high; /* Block count */
+ uint64_t count; /* Block count */
uint8_t block[MD4_DATA_SIZE]; /* Block buffer */
unsigned index; /* Into buffer */
};