diff options
Diffstat (limited to 'src/block/rc6/rc6.h')
-rw-r--r-- | src/block/rc6/rc6.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/block/rc6/rc6.h b/src/block/rc6/rc6.h index 02c464c5c..55a9d412e 100644 --- a/src/block/rc6/rc6.h +++ b/src/block/rc6/rc6.h @@ -25,11 +25,11 @@ class BOTAN_DLL RC6 : public BlockCipher std::string name() const { return "RC6"; } BlockCipher* clone() const { return new RC6; } - RC6() : BlockCipher(16, 1, 32) {} + RC6() : BlockCipher(16, 1, 32), S(44) {} private: void key_schedule(const byte[], u32bit); - SecureVector<u32bit, 44> S; + SecureVector<u32bit> S; }; } |