summaryrefslogtreecommitdiff
path: root/apps/ca.c
diff options
context:
space:
mode:
authorsteve <steve>2006-04-19 17:05:50 +0000
committersteve <steve>2006-04-19 17:05:50 +0000
commit9dc92cf5719da92ea3462cb8f7dc5454c6e3e2d1 (patch)
tree2207e178e44e885ad0873cb47f5dcc998697d499 /apps/ca.c
parent06d987c92982553eafd86a51feca1eeb5ee89a8e (diff)
downloadopenssl-9dc92cf5719da92ea3462cb8f7dc5454c6e3e2d1.tar.gz
Remove link between digests and signature algorithms.
Use cross reference table in ASN1_item_sign(), ASN1_item_verify() to eliminate the need for algorithm specific code.
Diffstat (limited to 'apps/ca.c')
-rw-r--r--apps/ca.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/ca.c b/apps/ca.c
index 9af7bab20..f7532d21b 100644
--- a/apps/ca.c
+++ b/apps/ca.c
@@ -1412,6 +1412,7 @@ bad:
/* we now have a CRL */
if (verbose) BIO_printf(bio_err,"signing CRL\n");
+#if 0
#ifndef OPENSSL_NO_DSA
if (pkey->type == EVP_PKEY_DSA)
dgst=EVP_dss1();
@@ -1421,6 +1422,7 @@ bad:
if (pkey->type == EVP_PKEY_EC)
dgst=EVP_ecdsa();
#endif
+#endif
/* Add any extensions asked for */