summaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2008-04-28 21:45:43 +0000
committerGeoff Thorpe <geoff@openssl.org>2008-04-28 21:45:43 +0000
commit98bd148b1ab003d510737e157556130693f1afab (patch)
tree87d4b24dfdd3f12d8908f7b1a846f837ddcd30df /CHANGES
parent292248b8c28a077cd3325639984b6ae10df4c4cf (diff)
Fix auto-discovery of ENGINEs, ported from HEAD.
NB, this fixes a regression relative to 0.9.7 and the documented behaviour, but it would make sense for distro maintainers and others with an interest in system behaviour to test with this change. The fix re-enables behaviour that was broken and thus inherently disabled. In particular, if you register an ENGINE implementation, and that ENGINE is able to successfully self-initialise on the host, it will get used automatically (as claimed in the documentation and as was the case for 0.9.7) - this was not the case with 0.9.8 until now because of a bug. PR: 1668 Submitted by: Ian Lister Reviewed by: Geoff Thorpe
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES12
1 files changed, 12 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 665c56a150..13d62bcf2f 100644
--- a/CHANGES
+++ b/CHANGES
@@ -4,6 +4,18 @@
Changes between 0.9.8g and 0.9.8h [xx XXX xxxx]
+ *) Reverse ENGINE-internal logic for caching default ENGINE handles.
+ This was broken until now in 0.9.8 releases, such that the only way
+ a registered ENGINE could be used (assuming it initialises
+ successfully on the host) was to explicitly set it as the default
+ for the relevant algorithms. This is in contradiction with 0.9.7
+ behaviour and the documentation. With this fix, when an ENGINE is
+ registered into a given algorithm's table of implementations, the
+ 'uptodate' flag is reset so that auto-discovery will be used next
+ time a new context for that algorithm attempts to select an
+ implementation.
+ [Ian Lister (tweaked by Geoff Thorpe)]
+
*) Backport of CMS code to OpenSSL 0.9.8. This differs from the 0.9.9
implemention in the following ways: