aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-28 20:03:58 +0000
committerlloyd <[email protected]>2008-09-28 20:03:58 +0000
commiteb8fd42d6aa3ed267c7444b114e02e64a567ca00 (patch)
treeeac8431723ecd2d2985a7801c9877955d6ba50bf /include
parentfde29acbeb656bcffe13b91f08f847eee4509670 (diff)
Modularize MGF1. Make EME1 and EMSA4 depend on it
Diffstat (limited to 'include')
-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