From: Dr. Stephen Henson Date: Thu, 28 Jul 2011 14:40:01 +0000 (+0000) Subject: recognise ecdsaWithSHA1 OID X-Git-Tag: OpenSSL-fips-2_0-rc1~235 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=3699ec605602cf8ce7400bdbd164ebd9ed658b4c;ds=sidebyside recognise ecdsaWithSHA1 OID --- diff --git a/crypto/ec/ec_pmeth.c b/crypto/ec/ec_pmeth.c index f433076ca1..d1ed66c37e 100644 --- a/crypto/ec/ec_pmeth.c +++ b/crypto/ec/ec_pmeth.c @@ -221,6 +221,7 @@ static int pkey_ec_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) case EVP_PKEY_CTRL_MD: if (EVP_MD_type((const EVP_MD *)p2) != NID_sha1 && + EVP_MD_type((const EVP_MD *)p2) != NID_ecdsa_with_SHA1 && EVP_MD_type((const EVP_MD *)p2) != NID_sha224 && EVP_MD_type((const EVP_MD *)p2) != NID_sha256 && EVP_MD_type((const EVP_MD *)p2) != NID_sha384 &&