diff options
author | Bodo Möller <bodo@openssl.org> | 2003-02-06 20:25:12 +0100 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2003-02-06 20:25:12 +0100 |
commit | 37c660ff9b22d6f0eb19a9881d3b663ca4f63449 (patch) | |
tree | b4e2e8e2eb24d85d0a9859194f34b1e62ee9f396 /crypto/ec/ecp_mont.c | |
parent | typo in WIN16 section (diff) | |
download | openssl-37c660ff9b22d6f0eb19a9881d3b663ca4f63449.tar.xz openssl-37c660ff9b22d6f0eb19a9881d3b663ca4f63449.zip |
implement fast point multiplication with precomputation
Submitted by: Nils Larsch
Reviewed by: Bodo Moeller
Diffstat (limited to 'crypto/ec/ecp_mont.c')
-rw-r--r-- | crypto/ec/ecp_mont.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/ec/ecp_mont.c b/crypto/ec/ecp_mont.c index 36f8236864..b64fa68b56 100644 --- a/crypto/ec/ecp_mont.c +++ b/crypto/ec/ecp_mont.c @@ -93,13 +93,14 @@ const EC_METHOD *EC_GFp_mont_method(void) ec_GFp_simple_add, ec_GFp_simple_dbl, ec_GFp_simple_invert, - 0 /* mul */, - 0 /* precompute_mult */, ec_GFp_simple_is_at_infinity, ec_GFp_simple_is_on_curve, ec_GFp_simple_cmp, ec_GFp_simple_make_affine, ec_GFp_simple_points_make_affine, + 0 /* mul */, + 0 /* precompute_mult */, + 0 /* have_precompute_mult */, ec_GFp_mont_field_mul, ec_GFp_mont_field_sqr, 0 /* field_div */, |