diff options
Diffstat (limited to 'src/block/square/square.h')
-rw-r--r-- | src/block/square/square.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/block/square/square.h b/src/block/square/square.h index 0a134bcb5..d6df63131 100644 --- a/src/block/square/square.h +++ b/src/block/square/square.h @@ -15,7 +15,7 @@ namespace Botan { /** * Square */ -class BOTAN_DLL Square : public BlockCipher +class BOTAN_DLL Square : public BlockCipher_Fixed_Block_Size<16> { public: void encrypt_n(const byte in[], byte out[], size_t blocks) const; @@ -25,7 +25,9 @@ class BOTAN_DLL Square : public BlockCipher std::string name() const { return "Square"; } BlockCipher* clone() const { return new Square; } - Square() : BlockCipher(16, 16), EK(28), DK(28), ME(32), MD(32) {} + Square() : BlockCipher_Fixed_Block_Size(16), + EK(28), DK(28), ME(32), MD(32) {} + private: void key_schedule(const byte[], size_t); |