diff options
Diffstat (limited to 'src/block/tea/tea.h')
-rw-r--r-- | src/block/tea/tea.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/block/tea/tea.h b/src/block/tea/tea.h index 6e1c4fafb..dd03ec3c6 100644 --- a/src/block/tea/tea.h +++ b/src/block/tea/tea.h @@ -25,10 +25,10 @@ class BOTAN_DLL TEA : public BlockCipher std::string name() const { return "TEA"; } BlockCipher* clone() const { return new TEA; } - TEA() : BlockCipher(8, 16) {} + TEA() : BlockCipher(8, 16), K(4) {} private: void key_schedule(const byte[], u32bit); - SecureVector<u32bit, 4> K; + SecureVector<u32bit> K; }; } |