From a2c99d3270eb73ef2db5704fc54356c6b75096f8 Mon Sep 17 00:00:00 2001 From: lloyd Date: Thu, 18 May 2006 18:33:19 +0000 Subject: Initial checkin --- include/idea.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 include/idea.h (limited to 'include/idea.h') diff --git a/include/idea.h b/include/idea.h new file mode 100644 index 000000000..136708bfe --- /dev/null +++ b/include/idea.h @@ -0,0 +1,33 @@ +/************************************************* +* IDEA Header File * +* (C) 1999-2006 The Botan Project * +*************************************************/ + +#ifndef BOTAN_IDEA_H__ +#define BOTAN_IDEA_H__ + +#include + +namespace Botan { + +/************************************************* +* IDEA * +*************************************************/ +class IDEA : public BlockCipher + { + public: + void clear() throw() { EK.clear(); DK.clear(); } + std::string name() const { return "IDEA"; } + BlockCipher* clone() const { return new IDEA; } + IDEA() : BlockCipher(8, 16) {} + private: + void enc(const byte[], byte[]) const; + void dec(const byte[], byte[]) const; + void key(const byte[], u32bit); + static u16bit mul_inv(u16bit); + SecureBuffer EK, DK; + }; + +} + +#endif -- cgit v1.2.3