From: Lutz Jänicke Date: Mon, 29 Jul 2002 13:31:44 +0000 (+0000) Subject: Only use DSA-functions if available. X-Git-Tag: OpenSSL_0_9_7-beta4~218^2~49 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=77c46bbf2997e68e1974ed90bacdf236fedf1242;p=oweals%2Fopenssl.git Only use DSA-functions if available. Submitted by: "Hellan,Kim KHE" Reviewed by: PR: 167 --- diff --git a/apps/x509.c b/apps/x509.c index 23e9b6bfe1..dd98eb3b08 100644 --- a/apps/x509.c +++ b/apps/x509.c @@ -923,10 +923,14 @@ bad: BIO_printf(bio_err,"Generating certificate request\n"); +#ifndef OPENSSL_NO_DSA if (pk->type == EVP_PKEY_DSA) digest=EVP_dss1(); - else if (pk->type == EVP_PKEY_ECDSA) +#endif +#ifndef OPENSSL_NO_ECDSA + if (pk->type == EVP_PKEY_ECDSA) digest=EVP_ecdsa(); +#endif rq=X509_to_X509_REQ(x,pk,digest); EVP_PKEY_free(pk);