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/dsa | |
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/dsa')
-rw-r--r-- | src/pubkey/dsa/dsa_core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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> |