/* * RC5 * (C) 1999-2007 Jack Lloyd * * Distributed under the terms of the Botan license */ #ifndef BOTAN_RC5_H__ #define BOTAN_RC5_H__ #include namespace Botan { /** * RC5 */ class BOTAN_DLL RC5 : public BlockCipher { public: void encrypt_n(const byte in[], byte out[], u32bit blocks) const; void decrypt_n(const byte in[], byte out[], u32bit blocks) const; void clear() { zeroise(S); } std::string name() const; BlockCipher* clone() const { return new RC5(ROUNDS); } /** * @param rounds the number of RC5 rounds to run. Must be between * 8 and 32 and a multiple of 4. */ RC5(u32bit rounds); private: void key_schedule(const byte[], u32bit); SecureVector S; const u32bit ROUNDS; }; } #endif