aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/idea/idea.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/idea/idea.h')
-rw-r--r--src/block/idea/idea.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/block/idea/idea.h b/src/block/idea/idea.h
index 737970b29..1a315ce3f 100644
--- a/src/block/idea/idea.h
+++ b/src/block/idea/idea.h
@@ -25,21 +25,21 @@ class BOTAN_DLL IDEA : public BlockCipher
std::string name() const { return "IDEA"; }
BlockCipher* clone() const { return new IDEA; }
- IDEA() : BlockCipher(8, 16) {}
+ IDEA() : BlockCipher(8, 16), EK(52), DK(52) {}
protected:
/**
* @return const reference to encryption subkeys
*/
- const SecureVector<u16bit, 52>& get_EK() const { return EK; }
+ const SecureVector<u16bit>& get_EK() const { return EK; }
/**
* @return const reference to decryption subkeys
*/
- const SecureVector<u16bit, 52>& get_DK() const { return DK; }
+ const SecureVector<u16bit>& get_DK() const { return DK; }
private:
void key_schedule(const byte[], u32bit);
- SecureVector<u16bit, 52> EK, DK;
+ SecureVector<u16bit> EK, DK;
};
}