mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
Submitted by: Neil Costigan <neil.costigan@celocom.com>
PR:
This commit is contained in:
parent
2d723902a0
commit
27eb622b78
3
CHANGES
3
CHANGES
@ -5,6 +5,9 @@
|
||||
|
||||
Changes between 0.9.1c and 0.9.2
|
||||
|
||||
*) Remove C++ style comments from crypto/bn/bn_local.h.
|
||||
[Neil Costigan <neil.costigan@celocom.com>]
|
||||
|
||||
*) The function OBJ_txt2nid was broken. It was supposed to return a nid
|
||||
based on a text string, looking up short and long names and finally
|
||||
"dot" format. The "dot" format stuff didn't work. Added new function
|
||||
|
@ -67,11 +67,11 @@ extern "C" {
|
||||
|
||||
/* Pentium pro 16,16,16,32,64 */
|
||||
/* Alpha 16,16,16,16.64 */
|
||||
#define BN_MULL_SIZE_NORMAL (16) // 32
|
||||
#define BN_MUL_RECURSIVE_SIZE_NORMAL (16) // 32 /* less than */
|
||||
#define BN_SQR_RECURSIVE_SIZE_NORMAL (16) // 32
|
||||
#define BN_MUL_LOW_RECURSIVE_SIZE_NORMAL (32) // 32
|
||||
#define BN_MONT_CTX_SET_SIZE_WORD (64) // 32
|
||||
#define BN_MULL_SIZE_NORMAL (16) /* 32 */
|
||||
#define BN_MUL_RECURSIVE_SIZE_NORMAL (16) /* 32 less than */
|
||||
#define BN_SQR_RECURSIVE_SIZE_NORMAL (16) /* 32 */
|
||||
#define BN_MUL_LOW_RECURSIVE_SIZE_NORMAL (32) /* 32 */
|
||||
#define BN_MONT_CTX_SET_SIZE_WORD (64) /* 32 */
|
||||
|
||||
#ifndef BN_MUL_COMBA
|
||||
#define bn_mul_comba8(r,a,b) bn_mul_normal(r,a,8,b,8)
|
||||
|
Loading…
Reference in New Issue
Block a user