diff options
Diffstat (limited to 'src/lib/libcrypto/ec/ec_local.h')
-rw-r--r-- | src/lib/libcrypto/ec/ec_local.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/libcrypto/ec/ec_local.h b/src/lib/libcrypto/ec/ec_local.h index 2bddaddd8a..1b7ca5b645 100644 --- a/src/lib/libcrypto/ec/ec_local.h +++ b/src/lib/libcrypto/ec/ec_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ec_local.h,v 1.47 2025/01/06 10:56:46 tb Exp $ */ | 1 | /* $OpenBSD: ec_local.h,v 1.48 2025/01/06 11:59:02 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Originally written by Bodo Moeller for the OpenSSL project. | 3 | * Originally written by Bodo Moeller for the OpenSSL project. |
4 | */ | 4 | */ |
@@ -143,7 +143,6 @@ struct ec_method_st { | |||
143 | int (*field_decode)(const EC_GROUP *, BIGNUM *r, const BIGNUM *a, | 143 | int (*field_decode)(const EC_GROUP *, BIGNUM *r, const BIGNUM *a, |
144 | BN_CTX *); | 144 | BN_CTX *); |
145 | 145 | ||
146 | int (*field_set_to_one)(const EC_GROUP *, BIGNUM *r, BN_CTX *); | ||
147 | int (*blind_coordinates)(const EC_GROUP *group, EC_POINT *p, | 146 | int (*blind_coordinates)(const EC_GROUP *group, EC_POINT *p, |
148 | BN_CTX *ctx); | 147 | BN_CTX *ctx); |
149 | } /* EC_METHOD */; | 148 | } /* EC_METHOD */; |
@@ -184,9 +183,8 @@ struct ec_group_st { | |||
184 | /* Enables optimized point arithmetics for special case. */ | 183 | /* Enables optimized point arithmetics for special case. */ |
185 | int a_is_minus3; | 184 | int a_is_minus3; |
186 | 185 | ||
187 | /* Montgomery context and values used by EC_GFp_mont_method. */ | 186 | /* Montgomery context used by EC_GFp_mont_method. */ |
188 | BN_MONT_CTX *mont_ctx; | 187 | BN_MONT_CTX *mont_ctx; |
189 | BIGNUM *mont_one; | ||
190 | } /* EC_GROUP */; | 188 | } /* EC_GROUP */; |
191 | 189 | ||
192 | struct ec_key_st { | 190 | struct ec_key_st { |