From fc680569172e938b5f1a6cb6acb53fbbaf59a5b6 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Wed, 2 Sep 2009 15:51:19 +0000 Subject: [PATCH] PR: 2029 Submitted by: Tomas Mraz Checked by: steve@openssl.org Fix so that the legacy digest EVP_dss1() still works. --- crypto/dsa/dsa_pmeth.c | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/dsa/dsa_pmeth.c b/crypto/dsa/dsa_pmeth.c index a2e781c468..84b77e3bfc 100644 --- a/crypto/dsa/dsa_pmeth.c +++ b/crypto/dsa/dsa_pmeth.c @@ -186,6 +186,7 @@ static int pkey_dsa_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_dsa && EVP_MD_type((const EVP_MD *)p2) != NID_sha224 && EVP_MD_type((const EVP_MD *)p2) != NID_sha256) { -- GitLab