diff options
Diffstat (limited to 'src/block/idea/idea.h')
-rw-r--r-- | src/block/idea/idea.h | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/src/block/idea/idea.h b/src/block/idea/idea.h deleted file mode 100644 index da5dc4cb6..000000000 --- a/src/block/idea/idea.h +++ /dev/null @@ -1,46 +0,0 @@ -/* -* IDEA -* (C) 1999-2007 Jack Lloyd -* -* Distributed under the terms of the Botan license -*/ - -#ifndef BOTAN_IDEA_H__ -#define BOTAN_IDEA_H__ - -#include <botan/block_cipher.h> - -namespace Botan { - -/** -* IDEA -*/ -class BOTAN_DLL IDEA : public Block_Cipher_Fixed_Params<8, 16> - { - public: - void encrypt_n(const byte in[], byte out[], size_t blocks) const; - void decrypt_n(const byte in[], byte out[], size_t blocks) const; - - void clear(); - std::string name() const { return "IDEA"; } - BlockCipher* clone() const { return new IDEA; } - protected: - /** - * @return const reference to encryption subkeys - */ - const secure_vector<u16bit>& get_EK() const { return EK; } - - /** - * @return const reference to decryption subkeys - */ - const secure_vector<u16bit>& get_DK() const { return DK; } - - private: - void key_schedule(const byte[], size_t); - - secure_vector<u16bit> EK, DK; - }; - -} - -#endif |