diff options
author | lloyd <[email protected]> | 2008-11-08 21:30:31 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-08 21:30:31 +0000 |
commit | 28901d2b99d6b9066cfdff6329d26fb975c52809 (patch) | |
tree | 5a9f3f93004d4aa40013b5cafe25069e12fc8cb6 /src/pubkey/dh | |
parent | ce8c2d27fced15e87829852231d00c197f42bc20 (diff) |
Remove dependency on Default_Engine from pubkey code
Diffstat (limited to 'src/pubkey/dh')
-rw-r--r-- | src/pubkey/dh/dh_op.cpp | 20 | ||||
-rw-r--r-- | src/pubkey/dh/info.txt | 1 |
2 files changed, 0 insertions, 21 deletions
diff --git a/src/pubkey/dh/dh_op.cpp b/src/pubkey/dh/dh_op.cpp deleted file mode 100644 index 3b87c6467..000000000 --- a/src/pubkey/dh/dh_op.cpp +++ /dev/null @@ -1,20 +0,0 @@ -/************************************************* -* DH Operations Source File * -* (C) 1999-2007 Jack Lloyd * -*************************************************/ - -#include <botan/dh_op.h> -#include <botan/eng_def.h> - -namespace Botan { - -/************************************************* -* Acquire a DH op * -*************************************************/ -DH_Operation* Default_Engine::dh_op(const DL_Group& group, - const BigInt& x) const - { - return new Default_DH_Op(group, x); - } - -} diff --git a/src/pubkey/dh/info.txt b/src/pubkey/dh/info.txt index f66294c5d..461184829 100644 --- a/src/pubkey/dh/info.txt +++ b/src/pubkey/dh/info.txt @@ -10,7 +10,6 @@ dh.h dh_core.cpp dh_core.h dh_op.h -dh_op.cpp </add> <requires> |