aboutsummaryrefslogtreecommitdiffstats
path: root/include/xtea.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/xtea.h
Initial checkin1.5.6
Diffstat (limited to 'include/xtea.h')
-rw-r--r--include/xtea.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/include/xtea.h b/include/xtea.h
new file mode 100644
index 000000000..0041891c4
--- /dev/null
+++ b/include/xtea.h
@@ -0,0 +1,32 @@
+/*************************************************
+* XTEA Header File *
+* (C) 1999-2006 The Botan Project *
+*************************************************/
+
+#ifndef BOTAN_XTEA_H__
+#define BOTAN_XTEA_H__
+
+#include <botan/base.h>
+
+namespace Botan {
+
+/*************************************************
+* XTEA *
+*************************************************/
+class XTEA : public BlockCipher
+ {
+ public:
+ void clear() throw() { EK.clear(); }
+ std::string name() const { return "XTEA"; }
+ BlockCipher* clone() const { return new XTEA; }
+ XTEA() : BlockCipher(8, 16) {}
+ private:
+ void enc(const byte[], byte[]) const;
+ void dec(const byte[], byte[]) const;
+ void key(const byte[], u32bit);
+ SecureBuffer<u32bit, 64> EK;
+ };
+
+}
+
+#endif