Below is the file 'include/idea.h' from this revision. You can also download the file.
/************************************************* * IDEA Header File * * (C) 1999-2007 The Botan Project * *************************************************/ #ifndef BOTAN_IDEA_H__ #define BOTAN_IDEA_H__ #include <botan/base.h> 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); SecureBuffer<u16bit, 52> EK, DK; }; } #endif