From: Richard Levitte Date: Tue, 20 Mar 2001 15:36:59 +0000 (+0000) Subject: avoid linking problems when OpenSSL is built with no-dsa. Spotted by Hellan,Kim... X-Git-Tag: OpenSSL_0_9_6c~182^2~338 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=271da5a2e01430ee44baf0d067a9befffa4faa14 avoid linking problems when OpenSSL is built with no-dsa. Spotted by Hellan,Kim KHE --- diff --git a/crypto/pkcs7/pk7_doit.c b/crypto/pkcs7/pk7_doit.c index 84dbd4a9a4..d0f3ed0411 100644 --- a/crypto/pkcs7/pk7_doit.c +++ b/crypto/pkcs7/pk7_doit.c @@ -580,8 +580,10 @@ 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 if (!EVP_SignFinal(&ctx_tmp,(unsigned char *)buf->data, (unsigned int *)&buf->length,si->pkey)) @@ -769,7 +771,9 @@ for (ii=0; iitype == EVP_PKEY_DSA) mdc_tmp.digest=EVP_dss1(); +#endif i=EVP_VerifyFinal(&mdc_tmp,os->data,os->length, pkey); EVP_PKEY_free(pkey);