diff options
Diffstat (limited to 'src/block/idea/idea.h')
-rw-r--r-- | src/block/idea/idea.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/block/idea/idea.h b/src/block/idea/idea.h index c0af38ad6..3552d282f 100644 --- a/src/block/idea/idea.h +++ b/src/block/idea/idea.h @@ -15,7 +15,7 @@ namespace Botan { /** * IDEA */ -class BOTAN_DLL IDEA : public BlockCipher +class BOTAN_DLL IDEA : public BlockCipher_Fixed_Block_Size<8> { public: void encrypt_n(const byte in[], byte out[], size_t blocks) const; @@ -25,7 +25,7 @@ class BOTAN_DLL IDEA : public BlockCipher std::string name() const { return "IDEA"; } BlockCipher* clone() const { return new IDEA; } - IDEA() : BlockCipher(8, 16), EK(52), DK(52) {} + IDEA() : BlockCipher_Fixed_Block_Size(16), EK(52), DK(52) {} protected: /** * @return const reference to encryption subkeys |