aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/tea/tea.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/tea/tea.h')
-rw-r--r--src/block/tea/tea.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/block/tea/tea.h b/src/block/tea/tea.h
new file mode 100644
index 000000000..71d4e02f9
--- /dev/null
+++ b/src/block/tea/tea.h
@@ -0,0 +1,32 @@
+/*************************************************
+* TEA Header File *
+* (C) 1999-2007 Jack Lloyd *
+*************************************************/
+
+#ifndef BOTAN_TEA_H__
+#define BOTAN_TEA_H__
+
+#include <botan/block_cipher.h>
+
+namespace Botan {
+
+/*************************************************
+* TEA *
+*************************************************/
+class BOTAN_DLL TEA : public BlockCipher
+ {
+ public:
+ void clear() throw() { K.clear(); }
+ std::string name() const { return "TEA"; }
+ BlockCipher* clone() const { return new TEA; }
+ TEA() : BlockCipher(8, 16) {}
+ private:
+ void enc(const byte[], byte[]) const;
+ void dec(const byte[], byte[]) const;
+ void key(const byte[], u32bit);
+ SecureBuffer<u32bit, 4> K;
+ };
+
+}
+
+#endif