summaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2010-08-26 14:29:55 +0000
committerBodo Möller <bodo@openssl.org>2010-08-26 14:29:55 +0000
commit04daec862ced4e5e3921724b7a59c432fa9cbab3 (patch)
treee40a5a0af4b7026697cfb1ce6a3a7b3876310c69 /CHANGES
parentd3bb63fc680031ac79a49231f49f549de412b083 (diff)
New 64-bit optimized implementation EC_GFp_nistp224_method().
This will only be compiled in if explicitly requested (#ifdef EC_NISTP224_64_GCC_128). Submitted by: Emilia Kasper (Google)
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES12
1 files changed, 12 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index bd5f02bab3..8c6cfbe9d8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -107,6 +107,18 @@
Changes between 1.0.0a and 1.0.1 [xx XXX xxxx]
+ *) Add EC_GFp_nistp224_method(), a 64-bit optimized implementation for
+ elliptic curve NIST-P224 with constant-time single point multiplication on
+ typical inputs. EC_GROUP_new_by_curve_name() will automatically use this
+ (while EC_GROUP_new_curve_GFp() currently won't and prefers the more
+ flexible implementations).
+
+ The implementation requires support for the nonstandard type __uint128_t,
+ and so is disabled by default. To include this in your build of OpenSSL,
+ use -DEC_NISTP224_64_GCC_128 on the Configure (or config) command line,
+ and run "make depend" (or "make update").
+ [Emilia Käsper <emilia.kasper@esat.kuleuven.be> (Google)]
+
*) Permit abbreviated handshakes when renegotiating using the function
SSL_renegotiate_abbreviated().
[Robin Seggelmann <seggelmann@fh-muenster.de>]