diff options
Diffstat (limited to 'src/lib/libcrypto/ec/ec2_mult.c')
-rw-r--r-- | src/lib/libcrypto/ec/ec2_mult.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/ec/ec2_mult.c b/src/lib/libcrypto/ec/ec2_mult.c index 3e5d1dca85..c44ac5c3db 100644 --- a/src/lib/libcrypto/ec/ec2_mult.c +++ b/src/lib/libcrypto/ec/ec2_mult.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ec2_mult.c,v 1.13 2018/07/23 18:24:22 tb Exp $ */ | 1 | /* $OpenBSD: ec2_mult.c,v 1.14 2022/11/19 07:29:29 tb Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. | 3 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. |
4 | * | 4 | * |
@@ -441,13 +441,13 @@ ec_GF2m_simple_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, | |||
441 | * because ec_GF2m_simple_mul() uses ec_wNAF_mul() if appropriate */ | 441 | * because ec_GF2m_simple_mul() uses ec_wNAF_mul() if appropriate */ |
442 | 442 | ||
443 | int | 443 | int |
444 | ec_GF2m_precompute_mult(EC_GROUP * group, BN_CTX * ctx) | 444 | ec_GF2m_precompute_mult(EC_GROUP *group, BN_CTX *ctx) |
445 | { | 445 | { |
446 | return ec_wNAF_precompute_mult(group, ctx); | 446 | return ec_wNAF_precompute_mult(group, ctx); |
447 | } | 447 | } |
448 | 448 | ||
449 | int | 449 | int |
450 | ec_GF2m_have_precompute_mult(const EC_GROUP * group) | 450 | ec_GF2m_have_precompute_mult(const EC_GROUP *group) |
451 | { | 451 | { |
452 | return ec_wNAF_have_precompute_mult(group); | 452 | return ec_wNAF_have_precompute_mult(group); |
453 | } | 453 | } |