aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/md4/md4.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash/md4/md4.h')
-rw-r--r--src/hash/md4/md4.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash/md4/md4.h b/src/hash/md4/md4.h
index 44081e635..07467fdfc 100644
--- a/src/hash/md4/md4.h
+++ b/src/hash/md4/md4.h
@@ -25,7 +25,7 @@ class BOTAN_DLL MD4 : public MDx_HashFunction
MD4() : MDx_HashFunction(16, 64, false, true), M(16), digest(4)
{ clear(); }
protected:
- void compress_n(const byte input[], u32bit blocks);
+ void compress_n(const byte input[], size_t blocks);
void copy_out(byte[]);
SecureVector<u32bit> M, digest;