From 3699ec605602cf8ce7400bdbd164ebd9ed658b4c Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Thu, 28 Jul 2011 14:40:01 +0000 Subject: [PATCH] recognise ecdsaWithSHA1 OID --- crypto/ec/ec_pmeth.c | 1 + 1 file changed, 1 insertion(+) 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 && -- 2.40.0