From ae478c48af11cf4e148dddfb4b748d56d311ca67 Mon Sep 17 00:00:00 2001 From: lloyd Date: Sun, 28 Sep 2008 16:45:45 +0000 Subject: Modularize all ciphers --- include/tea.h | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 include/tea.h (limited to 'include/tea.h') diff --git a/include/tea.h b/include/tea.h deleted file mode 100644 index 2fc9fe838..000000000 --- a/include/tea.h +++ /dev/null @@ -1,32 +0,0 @@ -/************************************************* -* TEA Header File * -* (C) 1999-2007 Jack Lloyd * -*************************************************/ - -#ifndef BOTAN_TEA_H__ -#define BOTAN_TEA_H__ - -#include - -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 K; - }; - -} - -#endif -- cgit v1.2.3