diff options
Diffstat (limited to 'src/lib/block/threefish/threefish.h')
-rw-r--r-- | src/lib/block/threefish/threefish.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/block/threefish/threefish.h b/src/lib/block/threefish/threefish.h index de46913c5..4281e822b 100644 --- a/src/lib/block/threefish/threefish.h +++ b/src/lib/block/threefish/threefish.h @@ -29,10 +29,9 @@ class BOTAN_PUBLIC_API(2,0) Threefish_512 final : public Block_Cipher_Fixed_Para BlockCipher* clone() const override { return new Threefish_512; } size_t parallelism() const override; - protected: + private: const secure_vector<uint64_t>& get_T() const { return m_T; } const secure_vector<uint64_t>& get_K() const { return m_K; } - private: #if defined(BOTAN_HAS_THREEFISH_512_AVX2) void avx2_encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const; |