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/block/xtea | |
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/block/xtea')
-rw-r--r-- | src/lib/block/xtea/xtea.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/lib/block/xtea/xtea.h b/src/lib/block/xtea/xtea.h index 3ce0fda58..5ec94fd05 100644 --- a/src/lib/block/xtea/xtea.h +++ b/src/lib/block/xtea/xtea.h @@ -24,11 +24,6 @@ class BOTAN_PUBLIC_API(2,0) XTEA final : public Block_Cipher_Fixed_Params<8, 16> void clear() override; std::string name() const override { return "XTEA"; } BlockCipher* clone() const override { return new XTEA; } - protected: - /** - * @return const reference to the key schedule - */ - const secure_vector<uint32_t>& get_EK() const { return m_EK; } private: void key_schedule(const uint8_t[], size_t) override; |