diff options
author | Jack Lloyd <[email protected]> | 2016-11-08 10:33:45 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-11-08 10:33:45 -0500 |
commit | fc44288f56588fdafb54aedb00458fd75472d6aa (patch) | |
tree | 9f9aa771c1b29cd64189bce210e4428d8c0c750e /src/lib/pubkey/ecdsa | |
parent | 181777189eceab70ec6ff19104902ab3ac8255c5 (diff) |
Remove Key_Type typedefs
Also part of Algo_Registry and not needed after #668
Diffstat (limited to 'src/lib/pubkey/ecdsa')
-rw-r--r-- | src/lib/pubkey/ecdsa/ecdsa.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/pubkey/ecdsa/ecdsa.cpp b/src/lib/pubkey/ecdsa/ecdsa.cpp index 48d16caca..0ee66c628 100644 --- a/src/lib/pubkey/ecdsa/ecdsa.cpp +++ b/src/lib/pubkey/ecdsa/ecdsa.cpp @@ -44,7 +44,6 @@ namespace { class ECDSA_Signature_Operation : public PK_Ops::Signature_with_EMSA { public: - typedef ECDSA_PrivateKey Key_Type; ECDSA_Signature_Operation(const ECDSA_PrivateKey& ecdsa, const std::string& emsa) : @@ -101,7 +100,6 @@ ECDSA_Signature_Operation::raw_sign(const byte msg[], size_t msg_len, class ECDSA_Verification_Operation : public PK_Ops::Verification_with_EMSA { public: - typedef ECDSA_PublicKey Key_Type; ECDSA_Verification_Operation(const ECDSA_PublicKey& ecdsa, const std::string& emsa) : PK_Ops::Verification_with_EMSA(emsa), |