diff options
author | Jack Lloyd <[email protected]> | 2018-08-08 16:38:51 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-08-08 16:38:51 -0400 |
commit | 2029ea0a633ef3060d4a2b819c60ca97e9d9512d (patch) | |
tree | 24960c2b231389832e37f2f2acb5705d5e07885e /src/lib/block/threefish_512/threefish_512.h | |
parent | 7caa583948f0f247d1ff6254228c1686c78981ed (diff) |
Remove unnecessary accessors for Threefish-512
Diffstat (limited to 'src/lib/block/threefish_512/threefish_512.h')
-rw-r--r-- | src/lib/block/threefish_512/threefish_512.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/block/threefish_512/threefish_512.h b/src/lib/block/threefish_512/threefish_512.h index 24f15190c..8b39c75c5 100644 --- a/src/lib/block/threefish_512/threefish_512.h +++ b/src/lib/block/threefish_512/threefish_512.h @@ -30,8 +30,6 @@ class BOTAN_PUBLIC_API(2,0) Threefish_512 final : public Block_Cipher_Fixed_Para size_t parallelism() const override; private: - const secure_vector<uint64_t>& get_T() const { return m_T; } - const secure_vector<uint64_t>& get_K() const { return m_K; } #if defined(BOTAN_HAS_THREEFISH_512_AVX2) void avx2_encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const; |