diff options
author | lloyd <[email protected]> | 2010-03-05 16:25:43 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-05 16:25:43 +0000 |
commit | c52cfb67263a9bb227c4b6fb0a0e37ab388f933a (patch) | |
tree | fdd87d05cae6e30e84c60d518ae1f99f80bbabff /src/pubkey/dsa/dsa.h | |
parent | df56028cad58fad04b9866326cb62700af8f2fbe (diff) |
Remove NR and DSA specific hooks
Diffstat (limited to 'src/pubkey/dsa/dsa.h')
-rw-r--r-- | src/pubkey/dsa/dsa.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/pubkey/dsa/dsa.h b/src/pubkey/dsa/dsa.h index 68ae34235..f8db77a1b 100644 --- a/src/pubkey/dsa/dsa.h +++ b/src/pubkey/dsa/dsa.h @@ -12,7 +12,6 @@ #include <botan/pk_ops.h> #include <botan/reducer.h> #include <botan/pow_mod.h> -#include <botan/dsa_core.h> namespace Botan { @@ -30,20 +29,15 @@ class BOTAN_DLL DSA_PublicKey : public PK_Verifying_wo_MR_Key, u32bit message_part_size() const { return group_q().bytes(); } u32bit max_input_bits() const { return group_q().bits(); } - bool verify(const byte msg[], u32bit msg_len, - const byte sig[], u32bit sig_len) const; - DSA_PublicKey(const AlgorithmIdentifier& alg_id, const MemoryRegion<byte>& key_bits) : DL_Scheme_PublicKey(alg_id, key_bits, DL_Group::ANSI_X9_57) { - core = DSA_Core(group, y); } DSA_PublicKey(const DL_Group& group, const BigInt& y); protected: DSA_PublicKey() {} - DSA_Core core; }; /* |