summaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2000-01-19 01:02:13 +0000
committerDr. Stephen Henson <steve@openssl.org>2000-01-19 01:02:13 +0000
commit77b47b903684020d07d16519b2a74cc58668fb20 (patch)
treea9685d9e5667bb0fc0349fd19eb87a7dae499ff3 /CHANGES
parent721b5b2a5c27365685adb59412b4a5d0b168221d (diff)
Rename X509_att*() stuff to X509at_*(), add X509_REQ wrappers.
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES16
1 files changed, 16 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 22ad45b5ff..eb85a40a6b 100644
--- a/CHANGES
+++ b/CHANGES
@@ -4,6 +4,22 @@
Changes between 0.9.4 and 0.9.5 [xx XXX 1999]
+ *) Changes to X509_ATTRIBUTE utilities. These have been renamed from
+ X509_*() to X509at_*() on the grounds that they don't handle X509
+ structures and behave in an analagous way to the X509v3 functions:
+ they shouldn't be called directly but wrapper functions should be used
+ instead.
+
+ So we also now have some wrapper functions that call the X509at functions
+ when passed certificate requests. (TO DO: similar things can be done with
+ PKCS#7 signed and unsigned attributes, PKCS#12 attributes and a few other
+ things. Some of these need some d2i or i2d and print functionality
+ because they handle more complex structures. Also need to modify things
+ like 'req' so it actually calls this stuff instead of the evil hacks it
+ currently uses.)
+
+ [Steve Henson]
+
*) Add missing #ifndefs that caused missing symbols when building libssl
as a shared library without RSA. Use #ifndef NO_SSL2 instead of
NO_RSA in ssl/s2*.c.