diff options
Diffstat (limited to 'src/block/rc2/rc2.h')
-rw-r--r-- | src/block/rc2/rc2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/block/rc2/rc2.h b/src/block/rc2/rc2.h index e6c900056..7e1953441 100644 --- a/src/block/rc2/rc2.h +++ b/src/block/rc2/rc2.h @@ -32,11 +32,11 @@ class BOTAN_DLL RC2 : public BlockCipher std::string name() const { return "RC2"; } BlockCipher* clone() const { return new RC2; } - RC2() : BlockCipher(8, 1, 32) {} + RC2() : BlockCipher(8, 1, 32), K(64) {} private: void key_schedule(const byte[], u32bit); - SecureVector<u16bit, 64> K; + SecureVector<u16bit> K; }; } |