diff options
author | Jack Lloyd <[email protected]> | 2017-10-02 23:33:53 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-10-02 23:34:21 -0400 |
commit | f9090ec68986d297fd4cfd97bf75521df8f38aff (patch) | |
tree | b7a7f687e8a4b5842f68c644ab0b3e8766f19a45 /src/lib/hash/md4/md4.h | |
parent | 9701249c99e4775d7015ce5d6a884626cc8f2673 (diff) |
Remove protected functions from final classes
Mostly residue from the old system of splitting impls among subclasses
Found with Sonar
Diffstat (limited to 'src/lib/hash/md4/md4.h')
-rw-r--r-- | src/lib/hash/md4/md4.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/hash/md4/md4.h b/src/lib/hash/md4/md4.h index 15f796df8..c51cb1682 100644 --- a/src/lib/hash/md4/md4.h +++ b/src/lib/hash/md4/md4.h @@ -27,10 +27,10 @@ class BOTAN_PUBLIC_API(2,0) MD4 final : public MDx_HashFunction MD4() : MDx_HashFunction(64, false, true), m_M(16), m_digest(4) { clear(); } - protected: + + private: void compress_n(const uint8_t input[], size_t blocks) override; void copy_out(uint8_t[]) override; - private: /** * The message buffer |