diff options
author | lloyd <[email protected]> | 2009-05-13 10:28:25 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-05-13 10:28:25 +0000 |
commit | 59ad7882f0bf20327bc04860a0c0c27461d2a3a9 (patch) | |
tree | 1c6b63e8f38e4b551092dd00ea048ab79e32b660 /src/pubkey | |
parent | 8a8169535702de9fd244de6409ed58ddca69452a (diff) |
engine.h had copies of some declarations from pk_engine.h that had not
been removed when that portion of the code was split off. Remove the
duplicated code from engine.h and update some code in pubkey that still
relied on the declarations in engine.h instead of pk_engine.h
Diffstat (limited to 'src/pubkey')
-rw-r--r-- | src/pubkey/dh/dh_core.cpp | 2 | ||||
-rw-r--r-- | src/pubkey/dsa/dsa_core.cpp | 2 | ||||
-rw-r--r-- | src/pubkey/ecdsa/ecdsa_core.cpp | 2 | ||||
-rw-r--r-- | src/pubkey/eckaeg/eckaeg_core.cpp | 2 | ||||
-rw-r--r-- | src/pubkey/elgamal/elg_core.cpp | 2 | ||||
-rw-r--r-- | src/pubkey/if_algo/if_core.cpp | 2 | ||||
-rw-r--r-- | src/pubkey/nr/nr_core.cpp | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/src/pubkey/dh/dh_core.cpp b/src/pubkey/dh/dh_core.cpp index bd744a3e1..78a26a8ef 100644 --- a/src/pubkey/dh/dh_core.cpp +++ b/src/pubkey/dh/dh_core.cpp @@ -7,7 +7,7 @@ #include <botan/dh_core.h> #include <botan/numthry.h> -#include <botan/engine.h> +#include <botan/pk_engine.h> #include <botan/parsing.h> #include <algorithm> diff --git a/src/pubkey/dsa/dsa_core.cpp b/src/pubkey/dsa/dsa_core.cpp index 2d958a316..e144d2467 100644 --- a/src/pubkey/dsa/dsa_core.cpp +++ b/src/pubkey/dsa/dsa_core.cpp @@ -7,7 +7,7 @@ #include <botan/dsa_core.h> #include <botan/numthry.h> -#include <botan/engine.h> +#include <botan/pk_engine.h> #include <botan/parsing.h> #include <algorithm> diff --git a/src/pubkey/ecdsa/ecdsa_core.cpp b/src/pubkey/ecdsa/ecdsa_core.cpp index e1104e52f..93808ccd5 100644 --- a/src/pubkey/ecdsa/ecdsa_core.cpp +++ b/src/pubkey/ecdsa/ecdsa_core.cpp @@ -8,7 +8,7 @@ #include <botan/ecdsa_core.h> #include <botan/numthry.h> -#include <botan/engine.h> +#include <botan/pk_engine.h> #include <botan/parsing.h> #include <algorithm> diff --git a/src/pubkey/eckaeg/eckaeg_core.cpp b/src/pubkey/eckaeg/eckaeg_core.cpp index 6dcc1d1fa..dc89a878d 100644 --- a/src/pubkey/eckaeg/eckaeg_core.cpp +++ b/src/pubkey/eckaeg/eckaeg_core.cpp @@ -8,7 +8,7 @@ #include <botan/eckaeg_core.h> #include <botan/numthry.h> -#include <botan/engine.h> +#include <botan/pk_engine.h> #include <botan/parsing.h> #include <algorithm> diff --git a/src/pubkey/elgamal/elg_core.cpp b/src/pubkey/elgamal/elg_core.cpp index 2abd6a639..8b8c8f50b 100644 --- a/src/pubkey/elgamal/elg_core.cpp +++ b/src/pubkey/elgamal/elg_core.cpp @@ -7,7 +7,7 @@ #include <botan/elg_core.h> #include <botan/numthry.h> -#include <botan/engine.h> +#include <botan/pk_engine.h> #include <botan/parsing.h> #include <algorithm> diff --git a/src/pubkey/if_algo/if_core.cpp b/src/pubkey/if_algo/if_core.cpp index d112e8a77..8cc6a816f 100644 --- a/src/pubkey/if_algo/if_core.cpp +++ b/src/pubkey/if_algo/if_core.cpp @@ -7,7 +7,7 @@ #include <botan/if_core.h> #include <botan/numthry.h> -#include <botan/engine.h> +#include <botan/pk_engine.h> #include <botan/parsing.h> #include <algorithm> diff --git a/src/pubkey/nr/nr_core.cpp b/src/pubkey/nr/nr_core.cpp index 50be8fbb3..afa1115db 100644 --- a/src/pubkey/nr/nr_core.cpp +++ b/src/pubkey/nr/nr_core.cpp @@ -7,7 +7,7 @@ #include <botan/nr_core.h> #include <botan/numthry.h> -#include <botan/engine.h> +#include <botan/pk_engine.h> #include <botan/parsing.h> #include <algorithm> |