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/md5/md5.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/md5/md5.h')
-rw-r--r-- | src/lib/hash/md5/md5.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/hash/md5/md5.h b/src/lib/hash/md5/md5.h index 54231e785..07d10fb7a 100644 --- a/src/lib/hash/md5/md5.h +++ b/src/lib/hash/md5/md5.h @@ -27,11 +27,11 @@ class BOTAN_PUBLIC_API(2,0) MD5 final : public MDx_HashFunction MD5() : MDx_HashFunction(64, false, true), m_M(16), m_digest(4) { clear(); } - protected: + + private: void compress_n(const uint8_t[], size_t blocks) override; void copy_out(uint8_t[]) override; - private: /** * The message buffer */ |