aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/dsa
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-11-08 21:30:31 +0000
committerlloyd <[email protected]>2008-11-08 21:30:31 +0000
commit28901d2b99d6b9066cfdff6329d26fb975c52809 (patch)
tree5a9f3f93004d4aa40013b5cafe25069e12fc8cb6 /src/pubkey/dsa
parentce8c2d27fced15e87829852231d00c197f42bc20 (diff)
Remove dependency on Default_Engine from pubkey code
Diffstat (limited to 'src/pubkey/dsa')
-rw-r--r--src/pubkey/dsa/dsa_op.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/pubkey/dsa/dsa_op.cpp b/src/pubkey/dsa/dsa_op.cpp
index 8b6e5403b..20dbbea4a 100644
--- a/src/pubkey/dsa/dsa_op.cpp
+++ b/src/pubkey/dsa/dsa_op.cpp
@@ -4,7 +4,6 @@
*************************************************/
#include <botan/dsa_op.h>
-#include <botan/eng_def.h>
namespace Botan {
@@ -69,13 +68,4 @@ SecureVector<byte> Default_DSA_Op::sign(const byte in[], u32bit length,
return output;
}
-/*************************************************
-* Acquire a DSA op *
-*************************************************/
-DSA_Operation* Default_Engine::dsa_op(const DL_Group& group, const BigInt& y,
- const BigInt& x) const
- {
- return new Default_DSA_Op(group, y, x);
- }
-
}