diff options
-rw-r--r-- | crypto/ec_signature_creator_openssl.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/crypto/ec_signature_creator_openssl.cc b/crypto/ec_signature_creator_openssl.cc index 9e75ca2..9fa8ddc 100644 --- a/crypto/ec_signature_creator_openssl.cc +++ b/crypto/ec_signature_creator_openssl.cc @@ -14,10 +14,8 @@ ECSignatureCreator* ECSignatureCreator::Create(ECPrivateKey* key) { return NULL; } -ECSignatureCreator::ECSignatureCreator(ECPrivateKey* key, - HASH_HashType hash_type) - : key_(key), - hash_type_(hash_type) { +ECSignatureCreator::ECSignatureCreator(ECPrivateKey* key) + : key_(key) { NOTIMPLEMENTED(); } |