aboutsummaryrefslogtreecommitdiffstats
path: root/include/mgf1.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mgf1.h')
-rw-r--r--include/mgf1.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/include/mgf1.h b/include/mgf1.h
deleted file mode 100644
index c235821bf..000000000
--- a/include/mgf1.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*************************************************
-* MGF1 Header File *
-* (C) 1999-2007 Jack Lloyd *
-*************************************************/
-
-#ifndef BOTAN_MGF1_H__
-#define BOTAN_MGF1_H__
-
-#include <botan/pk_util.h>
-
-namespace Botan {
-
-/*************************************************
-* MGF1 (Mask Generation Function) *
-*************************************************/
-class BOTAN_DLL MGF1 : public MGF
- {
- public:
- void mask(const byte[], u32bit, byte[], u32bit) const;
-
- /**
- MGF1 constructor: takes ownership of hash
- */
- MGF1(HashFunction* hash);
-
- ~MGF1();
- private:
- HashFunction* hash;
- };
-
-}
-
-#endif