aboutsummaryrefslogtreecommitdiffstats
path: root/src/kdf/mgf1
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-29 19:09:22 +0000
committerlloyd <[email protected]>2008-09-29 19:09:22 +0000
commitee9965d3a59112d042df7569fde6a45302491499 (patch)
tree26ca5230867cdda27dde0100265ec3d5bb91ff7d /src/kdf/mgf1
parent1371cecdcf42e1070512b888307871f81421469b (diff)
Move KDF, EME, and EMSA base classes from pubkey to core to remove a
false dependency on BigInt in the KDF/padding code.
Diffstat (limited to 'src/kdf/mgf1')
-rw-r--r--src/kdf/mgf1/mgf1.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/kdf/mgf1/mgf1.h b/src/kdf/mgf1/mgf1.h
index c235821bf..dee762f3b 100644
--- a/src/kdf/mgf1/mgf1.h
+++ b/src/kdf/mgf1/mgf1.h
@@ -6,7 +6,8 @@
#ifndef BOTAN_MGF1_H__
#define BOTAN_MGF1_H__
-#include <botan/pk_util.h>
+#include <botan/kdf.h>
+#include <botan/base.h>
namespace Botan {