summaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2000-08-21 22:02:23 +0000
committerDr. Stephen Henson <steve@openssl.org>2000-08-21 22:02:23 +0000
commiteaa28181898b8ca0b54552a3290789bb17444c8a (patch)
tree4360130c00f3d122b416ba40efee781e313db5c7 /CHANGES
parent622ec449e5fe8f1e6bed036705ea97c74c9be1b7 (diff)
Various fixes...
initialize ex_pathlen to -1 so it isn't checked if pathlen is not present. set ucert to NULL in apps/pkcs12.c otherwise it gets freed twice. remove extraneous '\r' in MIME encoder. Allow a NULL to be passed to X509_gmtime_adj() Make PKCS#7 code use definite length encoding rather then the indefinite stuff it used previously.
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES7
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index e545b5002e..b01f3a07f8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -4,6 +4,13 @@
Changes between 0.9.5a and 0.9.6 [xx XXX 2000]
+ *) Modification to PKCS#7 encoding routines to output definite
+ length encoding. Since currently the whole structures are in
+ memory there's not real point in using indefinite length
+ constructed encoding. However if OpenSSL is compiled with
+ the flag PKCS7_INDEFINITE_ENCODING the old form is used.
+ [Steve Henson]
+
*) Added BIO_vprintf() and BIO_vsnprintf().
[Richard Levitte]