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/nr/nr_op.cpp | |
parent | ce8c2d27fced15e87829852231d00c197f42bc20 (diff) |
Remove dependency on Default_Engine from pubkey code
Diffstat (limited to 'src/pubkey/nr/nr_op.cpp')
-rw-r--r-- | src/pubkey/nr/nr_op.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/pubkey/nr/nr_op.cpp b/src/pubkey/nr/nr_op.cpp index dfb44d617..0c42a7eac 100644 --- a/src/pubkey/nr/nr_op.cpp +++ b/src/pubkey/nr/nr_op.cpp @@ -4,7 +4,6 @@ *************************************************/ #include <botan/nr_op.h> -#include <botan/eng_def.h> namespace Botan { @@ -67,13 +66,4 @@ SecureVector<byte> Default_NR_Op::sign(const byte in[], u32bit length, return output; } -/************************************************* -* Acquire a NR op * -*************************************************/ -NR_Operation* Default_Engine::nr_op(const DL_Group& group, const BigInt& y, - const BigInt& x) const - { - return new Default_NR_Op(group, y, x); - } - } |