aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/rsa/rsa.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-10-01 15:01:06 +0000
committerlloyd <[email protected]>2008-10-01 15:01:06 +0000
commit1034cf44b4ee0948312c11a1b079b8b04c5828e2 (patch)
tree17bd5ec37cea079132d0774435b81f8c18fc01f4 /src/pubkey/rsa/rsa.cpp
parent9da5c08de6bb6a6972a48ee5bb11ab7654c37f63 (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/rsa/rsa.cpp')
-rw-r--r--src/pubkey/rsa/rsa.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pubkey/rsa/rsa.cpp b/src/pubkey/rsa/rsa.cpp
index 8faec9972..7b74f3c57 100644
--- a/src/pubkey/rsa/rsa.cpp
+++ b/src/pubkey/rsa/rsa.cpp
@@ -4,9 +4,10 @@
*************************************************/
#include <botan/rsa.h>
+#include <botan/parsing.h>
#include <botan/numthry.h>
#include <botan/keypair.h>
-#include <botan/parsing.h>
+#include <botan/look_pk.h>
namespace Botan {