forked from openssl/openssl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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)
- Loading branch information
Showing
8 changed files
with
1,782 additions
and
170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 <[email protected]> (Google)] | ||
|
||
*) Permit abbreviated handshakes when renegotiating using the function | ||
SSL_renegotiate_abbreviated(). | ||
[Robin Seggelmann <[email protected]>] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.