diff options
author | lloyd <[email protected]> | 2008-10-01 15:01:06 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-01 15:01:06 +0000 |
commit | 1034cf44b4ee0948312c11a1b079b8b04c5828e2 (patch) | |
tree | 17bd5ec37cea079132d0774435b81f8c18fc01f4 /src/pubkey/elgamal | |
parent | 9da5c08de6bb6a6972a48ee5bb11ab7654c37f63 (diff) |
Split Diffie-Hellman off almost completely, such that nearly none of
it builds if it is disabled.
Current deficiency: due to #if defined(BLAH) in the engine code,
Botan will not be binary compat across different configurations b/c
the vtable will change size.
Move some source from core/ to core/libstate where it belonged (engine stuff)
Diffstat (limited to 'src/pubkey/elgamal')
-rw-r--r-- | src/pubkey/elgamal/elgamal.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pubkey/elgamal/elgamal.cpp b/src/pubkey/elgamal/elgamal.cpp index ea0d581b0..01b322d63 100644 --- a/src/pubkey/elgamal/elgamal.cpp +++ b/src/pubkey/elgamal/elgamal.cpp @@ -6,6 +6,7 @@ #include <botan/elgamal.h> #include <botan/numthry.h> #include <botan/keypair.h> +#include <botan/look_pk.h> #include <botan/util.h> namespace Botan { |