mirror of https://github.com/openssl/openssl.git
typo
This commit is contained in:
parent
27a9bf17c7
commit
24893ca999
4
CHANGES
4
CHANGES
|
|
@ -5,9 +5,9 @@
|
||||||
Changes between 0.9.7 and 0.9.8 [xx XXX xxxx]
|
Changes between 0.9.7 and 0.9.8 [xx XXX xxxx]
|
||||||
|
|
||||||
*) In crypto/ec/ec_mult.c, implement fast point multiplication with
|
*) In crypto/ec/ec_mult.c, implement fast point multiplication with
|
||||||
precomputation, based one wNAF splitting: EC_GROUP_precompute_mult()
|
precomputation, based on wNAF splitting: EC_GROUP_precompute_mult()
|
||||||
will now compute a table of multiples of the generator that
|
will now compute a table of multiples of the generator that
|
||||||
makes subsequent invocations of EC_POINTs_mul() or EC_POINT_mul
|
makes subsequent invocations of EC_POINTs_mul() or EC_POINT_mul()
|
||||||
faster (notably in the case of a single point multiplication,
|
faster (notably in the case of a single point multiplication,
|
||||||
scalar * generator).
|
scalar * generator).
|
||||||
[Nils Larsch, Bodo Moeller]
|
[Nils Larsch, Bodo Moeller]
|
||||||
|
|
|
||||||
|
|
@ -251,7 +251,7 @@ struct ec_point_st {
|
||||||
|
|
||||||
|
|
||||||
/* method functions in ec_mult.c
|
/* method functions in ec_mult.c
|
||||||
* (ec_lib.c uses these as defaults if group->method->mul is 0 */
|
* (ec_lib.c uses these as defaults if group->method->mul is 0) */
|
||||||
int ec_wNAF_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
|
int ec_wNAF_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
|
||||||
size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *);
|
size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *);
|
||||||
int ec_wNAF_precompute_mult(EC_GROUP *group, BN_CTX *);
|
int ec_wNAF_precompute_mult(EC_GROUP *group, BN_CTX *);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue