aboutsummaryrefslogtreecommitdiffstats
path: root/src/cipher/lubyrack/lubyrack.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cipher/lubyrack/lubyrack.h')
-rw-r--r--src/cipher/lubyrack/lubyrack.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/cipher/lubyrack/lubyrack.h b/src/cipher/lubyrack/lubyrack.h
deleted file mode 100644
index ba5a4d052..000000000
--- a/src/cipher/lubyrack/lubyrack.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*************************************************
-* Luby-Rackoff Header File *
-* (C) 1999-2008 Jack Lloyd *
-*************************************************/
-
-#ifndef BOTAN_LUBY_RACKOFF_H__
-#define BOTAN_LUBY_RACKOFF_H__
-
-#include <botan/block_cipher.h>
-#include <botan/hash.h>
-
-namespace Botan {
-
-/*************************************************
-* Luby-Rackoff *
-*************************************************/
-class BOTAN_DLL LubyRackoff : public BlockCipher
- {
- public:
- void clear() throw();
- std::string name() const;
- BlockCipher* clone() const;
-
- LubyRackoff(HashFunction* hash);
- ~LubyRackoff() { delete hash; }
- private:
- void enc(const byte[], byte[]) const;
- void dec(const byte[], byte[]) const;
- void key(const byte[], u32bit);
- HashFunction* hash;
- SecureVector<byte> K1, K2;
- };
-
-}
-
-#endif