diff options
-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; }; |