diff options
author | lloyd <[email protected]> | 2008-11-08 18:39:55 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-08 18:39:55 +0000 |
commit | 75b427da41ece0a419f3f38dda187d89650de7ef (patch) | |
tree | 3658b9593fa2217ddf2ad56e5eccb7ea2f4d513d /src/kdf | |
parent | 65944fc591cd86f1048bca31c7f7b286be741d90 (diff) |
Move the declaration of the HashFunction base class to a new header hash.h
(from base.h)
Diffstat (limited to 'src/kdf')
-rw-r--r-- | src/kdf/kdf1/kdf1.h | 2 | ||||
-rw-r--r-- | src/kdf/kdf2/kdf2.h | 2 | ||||
-rw-r--r-- | src/kdf/mgf1/mgf1.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/kdf/kdf1/kdf1.h b/src/kdf/kdf1/kdf1.h index 1c1fd7839..6099bdd4b 100644 --- a/src/kdf/kdf1/kdf1.h +++ b/src/kdf/kdf1/kdf1.h @@ -7,7 +7,7 @@ #define BOTAN_KDF1_H__ #include <botan/kdf.h> -#include <botan/base.h> +#include <botan/hash.h> namespace Botan { diff --git a/src/kdf/kdf2/kdf2.h b/src/kdf/kdf2/kdf2.h index 844057ab3..8aca285a6 100644 --- a/src/kdf/kdf2/kdf2.h +++ b/src/kdf/kdf2/kdf2.h @@ -7,7 +7,7 @@ #define BOTAN_KDF2_H__ #include <botan/kdf.h> -#include <botan/base.h> +#include <botan/hash.h> namespace Botan { diff --git a/src/kdf/mgf1/mgf1.h b/src/kdf/mgf1/mgf1.h index dee762f3b..e5cbe1d0f 100644 --- a/src/kdf/mgf1/mgf1.h +++ b/src/kdf/mgf1/mgf1.h @@ -7,7 +7,7 @@ #define BOTAN_MGF1_H__ #include <botan/kdf.h> -#include <botan/base.h> +#include <botan/hash.h> namespace Botan { |