Change from main development line, 2001-03-20 16:36 levitte
authorRichard Levitte <levitte@openssl.org>
Wed, 21 Mar 2001 14:18:06 +0000 (14:18 +0000)
committerRichard Levitte <levitte@openssl.org>
Wed, 21 Mar 2001 14:18:06 +0000 (14:18 +0000)
avoid linking problems when OpenSSL is built with no-dsa.
Spotted by Hellan,Kim KHE <khe@kmd.dk>

crypto/pkcs7/pk7_doit.c

index 93ad9a45b8949f900fb3f44be2284b5b90838e22..a4e1f6c864d6e867fea6eabc15922ef6707a8530 100644 (file)
@@ -588,8 +588,10 @@ int PKCS7_dataFinal(PKCS7 *p7, BIO *bio)
                                pp=NULL;
                                }
 
+#ifndef 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))
@@ -788,7 +790,9 @@ for (ii=0; ii<md_len; ii++) printf("%02X",md_dat[ii]); printf(" calc\n");
                ret = -1;
                goto err;
                }
+#ifndef NO_DSA
        if(pkey->type == EVP_PKEY_DSA) mdc_tmp.digest=EVP_dss1();
+#endif
 
        i=EVP_VerifyFinal(&mdc_tmp,os->data,os->length, pkey);
        EVP_PKEY_free(pkey);