diff options
author | lloyd <[email protected]> | 2008-10-12 01:54:52 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-12 01:54:52 +0000 |
commit | 0aecbea8f31f6b7ce14639860266b8116a6bb3a7 (patch) | |
tree | 5a06c5fc4201bdfdde03b4d874312d7eeeaa3c1f /src/cert/cvc | |
parent | 053dfa09e95039022e3c4249655cbe5fe12db9c5 (diff) |
Move InSiTo's ECDSA tests into the main test suite
Diffstat (limited to 'src/cert/cvc')
-rw-r--r-- | src/cert/cvc/ecdsa_sig.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/cert/cvc/ecdsa_sig.cpp b/src/cert/cvc/ecdsa_sig.cpp index f0b407e56..c33a4550a 100644 --- a/src/cert/cvc/ecdsa_sig.cpp +++ b/src/cert/cvc/ecdsa_sig.cpp @@ -25,16 +25,6 @@ bool operator==(const ECDSA_Signature& lhs, const ECDSA_Signature& rhs) return (lhs.get_r() == rhs.get_r() && lhs.get_s() == rhs.get_s()); } -ECDSA_Signature_Decoder* ECDSA_Signature::x509_decoder() - { - return new ECDSA_Signature_Decoder(this); - } - -ECDSA_Signature_Encoder* ECDSA_Signature::x509_encoder() const - { - return new ECDSA_Signature_Encoder(this); - } - SecureVector<byte> const ECDSA_Signature::get_concatenation() const { u32bit enc_len = m_r > m_s ? m_r.bytes() : m_s.bytes(); // use the larger |