From: Dr. Stephen Henson Date: Thu, 18 May 2006 13:05:20 +0000 (+0000) Subject: Remove old digest type hacks for non RSA keys. X-Git-Tag: OpenSSL_0_9_8k^2~1312 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f2b139ed1fc3541bb17a066bba5c12b30fa989fa;p=oweals%2Fopenssl.git Remove old digest type hacks for non RSA keys. --- diff --git a/crypto/pkcs7/pk7_doit.c b/crypto/pkcs7/pk7_doit.c index a3c8baf466..60cffb0782 100644 --- a/crypto/pkcs7/pk7_doit.c +++ b/crypto/pkcs7/pk7_doit.c @@ -794,15 +794,6 @@ int PKCS7_dataFinal(PKCS7 *p7, BIO *bio) OPENSSL_free(abuf); } -#ifndef OPENSSL_NO_DSA - if (si->pkey->type == EVP_PKEY_DSA) - ctx_tmp.digest=EVP_dss1(); -#endif -#ifndef OPENSSL_NO_ECDSA - if (si->pkey->type == EVP_PKEY_EC) - ctx_tmp.digest=EVP_ecdsa(); -#endif - if (!EVP_SignFinal(&ctx_tmp,(unsigned char *)buf->data, (unsigned int *)&buf->length,si->pkey)) { @@ -1011,14 +1002,6 @@ for (ii=0; iitype == EVP_PKEY_DSA) mdc_tmp.digest=EVP_dss1(); -#endif -#ifndef OPENSSL_NO_ECDSA - if (pkey->type == EVP_PKEY_EC) mdc_tmp.digest=EVP_ecdsa(); -#endif -#endif i=EVP_VerifyFinal(&mdc_tmp,os->data,os->length, pkey); EVP_PKEY_free(pkey);