diff options
author | Niels Möller <nisse@lysator.liu.se> | 2013-09-28 09:43:12 +0200 |
---|---|---|
committer | Niels Möller <nisse@lysator.liu.se> | 2013-09-28 09:44:22 +0200 |
commit | cb83bd331e5774027bcab965ccf9bcbe798ad167 (patch) | |
tree | 3bbf1e2ee88e1ff1a27c877bd6cd21dc65f1d4a6 /md4.h | |
parent | 89755c916c84f722f081b5d53e8472d963cfbfe4 (diff) | |
download | nettle-cb83bd331e5774027bcab965ccf9bcbe798ad167.tar.gz |
Made hash functions use an uint64_t for the block count.
Diffstat (limited to 'md4.h')
-rw-r--r-- | md4.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 */ }; |