summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ec/ecp_methods.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/ec/ecp_methods.c')
-rw-r--r--src/lib/libcrypto/ec/ecp_methods.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libcrypto/ec/ecp_methods.c b/src/lib/libcrypto/ec/ecp_methods.c
index 8bcff77d0a..ad975cb646 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.41 2025/01/22 12:54:40 tb Exp $ */ 1/* $OpenBSD: ecp_methods.c,v 1.42 2025/01/25 13:15:21 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.
@@ -1291,7 +1291,6 @@ ec_mont_field_decode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
1291} 1291}
1292 1292
1293static const EC_METHOD ec_GFp_simple_method = { 1293static const EC_METHOD ec_GFp_simple_method = {
1294 .field_type = NID_X9_62_prime_field,
1295 .group_set_curve = ec_group_set_curve, 1294 .group_set_curve = ec_group_set_curve,
1296 .group_get_curve = ec_group_get_curve, 1295 .group_get_curve = ec_group_get_curve,
1297 .point_is_on_curve = ec_point_is_on_curve, 1296 .point_is_on_curve = ec_point_is_on_curve,
@@ -1316,7 +1315,6 @@ EC_GFp_simple_method(void)
1316LCRYPTO_ALIAS(EC_GFp_simple_method); 1315LCRYPTO_ALIAS(EC_GFp_simple_method);
1317 1316
1318static const EC_METHOD ec_GFp_mont_method = { 1317static const EC_METHOD ec_GFp_mont_method = {
1319 .field_type = NID_X9_62_prime_field,
1320 .group_set_curve = ec_mont_group_set_curve, 1318 .group_set_curve = ec_mont_group_set_curve,
1321 .group_get_curve = ec_group_get_curve, 1319 .group_get_curve = ec_group_get_curve,
1322 .point_is_on_curve = ec_point_is_on_curve, 1320 .point_is_on_curve = ec_point_is_on_curve,