diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2009-09-02 17:51:19 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2009-09-02 17:51:19 +0200 |
commit | fc680569172e938b5f1a6cb6acb53fbbaf59a5b6 (patch) | |
tree | 2ebade65a61c8b63579f820b9cff0327943f3b76 /crypto/dsa | |
parent | PR: 2013 (diff) | |
download | openssl-fc680569172e938b5f1a6cb6acb53fbbaf59a5b6.tar.xz openssl-fc680569172e938b5f1a6cb6acb53fbbaf59a5b6.zip |
PR: 2029
Submitted by: Tomas Mraz <tmraz@redhat.com>
Checked by: steve@openssl.org
Fix so that the legacy digest EVP_dss1() still works.
Diffstat (limited to 'crypto/dsa')
-rw-r--r-- | crypto/dsa/dsa_pmeth.c | 1 |
1 files changed, 1 insertions, 0 deletions
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) { |