aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/md4
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash/md4')
-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 4bb5e3903..bb0fac576 100644
--- a/src/hash/md4/md4.h
+++ b/src/hash/md4/md4.h
@@ -20,7 +20,7 @@ class BOTAN_DLL MD4 : public MDx_HashFunction
std::string name() const { return "MD4"; }
HashFunction* clone() const { return new MD4; }
MD4() : MDx_HashFunction(16, 64, false, true) { clear(); }
- private:
+ protected:
void hash(const byte[]);
void copy_out(byte[]);