summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2003-02-06 19:32:06 +0000
committerBodo Möller <bodo@openssl.org>2003-02-06 19:32:06 +0000
commit24893ca9990eaf8d341a8a91dd9a366d81520552 (patch)
tree2c75d7f80819f991c3180ebf82bd400a138b8594
parent27a9bf17c77bd528bab9457ff42df4650e2bf101 (diff)
typo
-rw-r--r--CHANGES4
-rw-r--r--crypto/ec/ec_lcl.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index 36c6bd1765..f7ab583942 100644
--- a/CHANGES
+++ b/CHANGES
@@ -5,9 +5,9 @@
Changes between 0.9.7 and 0.9.8 [xx XXX xxxx]
*) 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
- 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,
scalar * generator).
[Nils Larsch, Bodo Moeller]
diff --git a/crypto/ec/ec_lcl.h b/crypto/ec/ec_lcl.h
index 54b6a45f30..06e666983d 100644
--- a/crypto/ec/ec_lcl.h
+++ b/crypto/ec/ec_lcl.h
@@ -251,7 +251,7 @@ struct ec_point_st {
/* 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,
size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *);
int ec_wNAF_precompute_mult(EC_GROUP *group, BN_CTX *);