diff options
author | tb <> | 2024-12-06 15:49:37 +0000 |
---|---|---|
committer | tb <> | 2024-12-06 15:49:37 +0000 |
commit | e2a74b965777b01542143e9198f28a6620f9f4f0 (patch) | |
tree | a9fde5c9e27c337e683318a28e89e742c73a721d /src/lib/libcrypto/ec/ecp_methods.c | |
parent | bf1c7309b6363f22dd0686c08480b282aef894a4 (diff) | |
download | openbsd-e2a74b965777b01542143e9198f28a6620f9f4f0.tar.gz openbsd-e2a74b965777b01542143e9198f28a6620f9f4f0.tar.bz2 openbsd-e2a74b965777b01542143e9198f28a6620f9f4f0.zip |
Rename ec_wNAF_mul() to ec_wnaf_mul()
discussed with jsing
Diffstat (limited to 'src/lib/libcrypto/ec/ecp_methods.c')
-rw-r--r-- | src/lib/libcrypto/ec/ecp_methods.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ec/ecp_methods.c b/src/lib/libcrypto/ec/ecp_methods.c index b14cd0b158..50607ea216 100644 --- a/src/lib/libcrypto/ec/ecp_methods.c +++ b/src/lib/libcrypto/ec/ecp_methods.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ecp_methods.c,v 1.12 2024/11/30 21:09:59 tb Exp $ */ | 1 | /* $OpenBSD: ecp_methods.c,v 1.13 2024/12/06 15:49:37 tb Exp $ */ |
2 | /* Includes code written by Lenka Fibikova <fibikova@exp-math.uni-essen.de> | 2 | /* Includes code written by Lenka Fibikova <fibikova@exp-math.uni-essen.de> |
3 | * for the OpenSSL project. | 3 | * for the OpenSSL project. |
4 | * Includes code written by Bodo Moeller for the OpenSSL project. | 4 | * Includes code written by Bodo Moeller for the OpenSSL project. |
@@ -1523,7 +1523,7 @@ static int | |||
1523 | ec_mul_double_nonct(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar, | 1523 | ec_mul_double_nonct(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar, |
1524 | const BIGNUM *p_scalar, const EC_POINT *point, BN_CTX *ctx) | 1524 | const BIGNUM *p_scalar, const EC_POINT *point, BN_CTX *ctx) |
1525 | { | 1525 | { |
1526 | return ec_wNAF_mul(group, r, g_scalar, point, p_scalar, ctx); | 1526 | return ec_wnaf_mul(group, r, g_scalar, point, p_scalar, ctx); |
1527 | } | 1527 | } |
1528 | 1528 | ||
1529 | static void | 1529 | static void |