summaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-09-11 13:36:42 +0100
committerMatt Caswell <matt@openssl.org>2015-10-30 08:39:46 +0000
commit264ab6b1cd3dae59d98cbead70fd76677a409592 (patch)
tree8dc81f310fb8155720708e10fb27e50ee4c20631 /CHANGES
parent075c8795857de6746ee662e50ebe44055a494f51 (diff)
Update CHANGES
Update the CHANGES file for the state machine rewrite Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES12
1 files changed, 12 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 7f33901ef4..2be8ecccbe 100644
--- a/CHANGES
+++ b/CHANGES
@@ -4,6 +4,17 @@
Changes between 1.0.2 and 1.1.0 [xx XXX xxxx]
+ *) State machine rewrite. The state machine code has been significantly
+ refactored in order to remove much duplication of code and solve issues
+ with the old code (see ssl/statem/README for further details). This change
+ does have some associated API changes. Notably SSL_get_state/SSL_state now
+ returns an "enum HANDSHAKE_STATE" instead of an int. The previous handshake
+ states defined in ssl.h and ssl3.h have been redefined to be the nearest
+ equivalent HANDSHAKE_STATE value. Not all states have an equivalent value,
+ (e.g. SSL_ST_CW_FLUSH). New application code should not use the old
+ handshake state values, but should instead use HANDSHAKE_STATE.
+ [Matt Caswell]
+
*) The demo files in crypto/threads were moved to demo/threads.
[Rich Salz]
@@ -47,6 +58,7 @@
*) Fix no-stdio build.
[ David Woodhouse <David.Woodhouse@intel.com> and also
Ivan Nestlerode <ivan.nestlerode@sonos.com> ]
+
*) New testing framework
The testing framework has been largely rewritten and is now using
perl and the perl modules Test::Harness and an extended variant of