diff options
Diffstat (limited to 'src/lib/block/mars/mars.h')
-rw-r--r-- | src/lib/block/mars/mars.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/src/lib/block/mars/mars.h b/src/lib/block/mars/mars.h deleted file mode 100644 index a4d7a07d6..000000000 --- a/src/lib/block/mars/mars.h +++ /dev/null @@ -1,35 +0,0 @@ -/* -* MARS -* (C) 1999-2007 Jack Lloyd -* -* Botan is released under the Simplified BSD License (see license.txt) -*/ - -#ifndef BOTAN_MARS_H__ -#define BOTAN_MARS_H__ - -#include <botan/block_cipher.h> - -namespace Botan { - -/** -* MARS, IBM's candidate for AES -*/ -class BOTAN_DLL MARS final : public Block_Cipher_Fixed_Params<16, 16, 32, 4> - { - public: - void encrypt_n(const byte in[], byte out[], size_t blocks) const override; - void decrypt_n(const byte in[], byte out[], size_t blocks) const override; - - void clear() override; - std::string name() const override { return "MARS"; } - BlockCipher* clone() const override { return new MARS; } - private: - void key_schedule(const byte[], size_t) override; - - secure_vector<u32bit> m_EK; - }; - -} - -#endif |