aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/pubkey/ecdsa
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-11-08 10:33:45 -0500
committerJack Lloyd <[email protected]>2016-11-08 10:33:45 -0500
commitfc44288f56588fdafb54aedb00458fd75472d6aa (patch)
tree9f9aa771c1b29cd64189bce210e4428d8c0c750e /src/lib/pubkey/ecdsa
parent181777189eceab70ec6ff19104902ab3ac8255c5 (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.cpp2
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),