diff options
author | lloyd <[email protected]> | 2006-05-18 18:33:19 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-05-18 18:33:19 +0000 |
commit | a2c99d3270eb73ef2db5704fc54356c6b75096f8 (patch) | |
tree | ad3d6c4fcc8dd0f403f8105598943616246fe172 /include/rc5.h |
Initial checkin1.5.6
Diffstat (limited to 'include/rc5.h')
-rw-r--r-- | include/rc5.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/include/rc5.h b/include/rc5.h new file mode 100644 index 000000000..9c2479edf --- /dev/null +++ b/include/rc5.h @@ -0,0 +1,33 @@ +/************************************************* +* RC5 Header File * +* (C) 1999-2006 The Botan Project * +*************************************************/ + +#ifndef BOTAN_RC5_H__ +#define BOTAN_RC5_H__ + +#include <botan/base.h> + +namespace Botan { + +/************************************************* +* RC5 * +*************************************************/ +class RC5 : public BlockCipher + { + public: + void clear() throw() { S.clear(); } + std::string name() const; + BlockCipher* clone() const { return new RC5(ROUNDS); } + RC5(u32bit); + private: + void enc(const byte[], byte[]) const; + void dec(const byte[], byte[]) const; + void key(const byte[], u32bit); + SecureVector<u32bit> S; + const u32bit ROUNDS; + }; + +} + +#endif |