aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/pkcs7
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-03-06 19:33:29 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-03-06 19:33:29 +0000
commit1756d405cc0d5bf8fd0a40b8d103ee9314522171 (patch)
treefb862f3f0c53144b518ebf0eec245a10a355fa90 /crypto/pkcs7
parent116e315303d87c1974500a89dc3ff2fe7f88e59d (diff)
downloadopenssl-1756d405cc0d5bf8fd0a40b8d103ee9314522171.tar.gz
Added support for adding extensions to CRLs, also fix a memory leak and
make 'req' check the config file syntax before it adds extensions. Added info in the documentation as well.
Diffstat (limited to 'crypto/pkcs7')
-rw-r--r--crypto/pkcs7/sign.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/pkcs7/sign.c b/crypto/pkcs7/sign.c
index 6ad88d4688..772863be0f 100644
--- a/crypto/pkcs7/sign.c
+++ b/crypto/pkcs7/sign.c
@@ -110,8 +110,11 @@ again:
/* Add some extra attributes */
if (!add_signed_time(si)) goto err;
+#if 0
+ /* Since these are made up attributes lets leave them out */
if (!add_signed_string(si,"SIGNED STRING")) goto err;
if (!add_signed_seq2string(si,"STRING1","STRING2")) goto err;
+#endif
/* we may want to add more */
PKCS7_add_certificate(p7,x509);