/* * RC6 * (C) 1999-2007 Jack Lloyd * * Distributed under the terms of the Botan license */ #ifndef BOTAN_RC6_H__ #define BOTAN_RC6_H__ #include namespace Botan { /* * RC6 */ class BOTAN_DLL RC6 : public BlockCipher { public: void clear() throw() { S.clear(); } std::string name() const { return "RC6"; } BlockCipher* clone() const { return new RC6; } RC6() : BlockCipher(16, 1, 32) {} private: void enc(const byte[], byte[]) const; void dec(const byte[], byte[]) const; void key_schedule(const byte[], u32bit); SecureBuffer S; }; } #endif