diff options
author | Jack Lloyd <[email protected]> | 2017-10-03 01:40:00 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-10-03 01:40:00 -0400 |
commit | 9efe16ed1d416390584621276dcb8e3782d17c71 (patch) | |
tree | 339ac2c28c6e16b4adcdf1edaac23a06ad42c681 | |
parent | 363b3b3a88ba6f8a936b696ff30fd83f2ffb5e30 (diff) |
Remove redundant private: specifier
[ci skip]
-rw-r--r-- | src/lib/block/serpent/serpent.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/block/serpent/serpent.h b/src/lib/block/serpent/serpent.h index bad0e0fad..28aa44e21 100644 --- a/src/lib/block/serpent/serpent.h +++ b/src/lib/block/serpent/serpent.h @@ -42,8 +42,8 @@ class BOTAN_PUBLIC_API(2,0) Serpent final : public Block_Cipher_Fixed_Params<16, void simd_decrypt_4(const uint8_t in[64], uint8_t out[64]) const; #endif - private: void key_schedule(const uint8_t key[], size_t length) override; + secure_vector<uint32_t> m_round_key; }; |