diff options
Diffstat (limited to 'src/hash/md5/md5.h')
-rw-r--r-- | src/hash/md5/md5.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash/md5/md5.h b/src/hash/md5/md5.h index 732ec026d..f79a3ec65 100644 --- a/src/hash/md5/md5.h +++ b/src/hash/md5/md5.h @@ -25,7 +25,7 @@ class BOTAN_DLL MD5 : public MDx_HashFunction MD5() : MDx_HashFunction(16, 64, false, true), M(16), digest(4) { clear(); } protected: - void compress_n(const byte[], u32bit blocks); + void compress_n(const byte[], size_t blocks); void copy_out(byte[]); SecureVector<u32bit> M, digest; |