aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2000-02-04 14:01:38 +0000
committerDr. Stephen Henson <steve@openssl.org>2000-02-04 14:01:38 +0000
commitaf57d843124672a9053a4da60ad7f9b6d4324a5a (patch)
treebe04d473220a67bbe9f5075a13f3cf299b8ade7a /CHANGES
parent53002dc69147ed67513623acb6ad390b69dac4c7 (diff)
downloadopenssl-af57d843124672a9053a4da60ad7f9b6d4324a5a.tar.gz
Rename SSLeay_add_all_algorithms() et al to
OpenSSL_add_all_algorithms(). Move these into separate files so they work properly.
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES9
1 files changed, 9 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index d49e01bdb4..eab6eca939 100644
--- a/CHANGES
+++ b/CHANGES
@@ -4,6 +4,15 @@
Changes between 0.9.4 and 0.9.5 [xx XXX 2000]
+ *) Change the SSLeay_add_all_*() functions to OpenSSL_add_all_*() and
+ include a #define from the old name to the new. The original intent
+ was that statically linked binaries could for example just call
+ SSLeay_add_all_ciphers() to just add ciphers to the table and not
+ link with digests. This never worked becayse SSLeay_add_all_digests()
+ and SSLeay_add_all_ciphers() were in the same source file so calling
+ one would link with the other. They are now in separate source files.
+ [Steve Henson]
+
*) Add a new -notext option to 'ca' and a -pubkey option to 'spkac'.
[Steve Henson]