diff options
Diffstat (limited to 'src/hash/md5')
-rw-r--r-- | src/hash/md5/md5.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/hash/md5/md5.h b/src/hash/md5/md5.h index d0706ab4b..732ec026d 100644 --- a/src/hash/md5/md5.h +++ b/src/hash/md5/md5.h @@ -21,13 +21,14 @@ class BOTAN_DLL MD5 : public MDx_HashFunction void clear(); std::string name() const { return "MD5"; } HashFunction* clone() const { return new MD5; } - MD5() : MDx_HashFunction(16, 64, false, true) { clear(); } + + MD5() : MDx_HashFunction(16, 64, false, true), M(16), digest(4) + { clear(); } protected: void compress_n(const byte[], u32bit blocks); void copy_out(byte[]); - SecureVector<u32bit, 16> M; - SecureVector<u32bit, 4> digest; + SecureVector<u32bit> M, digest; }; } |