diff options
Diffstat (limited to 'src/cipher/tea/tea.h')
-rw-r--r-- | src/cipher/tea/tea.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/cipher/tea/tea.h b/src/cipher/tea/tea.h deleted file mode 100644 index 71d4e02f9..000000000 --- a/src/cipher/tea/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 <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 |