aboutsummaryrefslogtreecommitdiffstats
path: root/include/rc6.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-05-18 18:33:19 +0000
committerlloyd <[email protected]>2006-05-18 18:33:19 +0000
commita2c99d3270eb73ef2db5704fc54356c6b75096f8 (patch)
treead3d6c4fcc8dd0f403f8105598943616246fe172 /include/rc6.h
Initial checkin1.5.6
Diffstat (limited to 'include/rc6.h')
-rw-r--r--include/rc6.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/include/rc6.h b/include/rc6.h
new file mode 100644
index 000000000..fd21adc94
--- /dev/null
+++ b/include/rc6.h
@@ -0,0 +1,33 @@
+/*************************************************
+* RC6 Header File *
+* (C) 1999-2006 The Botan Project *
+*************************************************/
+
+#ifndef BOTAN_RC6_H__
+#define BOTAN_RC6_H__
+
+#include <botan/base.h>
+
+namespace Botan {
+
+/*************************************************
+* RC6 *
+*************************************************/
+class 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(const byte[], u32bit);
+
+ SecureBuffer<u32bit, 44> S;
+ };
+
+}
+
+#endif