diff options
Diffstat (limited to 'src/lib/libcrypto/ec/ec_lcl.h')
-rw-r--r-- | src/lib/libcrypto/ec/ec_lcl.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/lib/libcrypto/ec/ec_lcl.h b/src/lib/libcrypto/ec/ec_lcl.h index 4addc860ed..7570cdc7f2 100644 --- a/src/lib/libcrypto/ec/ec_lcl.h +++ b/src/lib/libcrypto/ec/ec_lcl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ec_lcl.h,v 1.15 2021/04/20 17:16:37 tb Exp $ */ | 1 | /* $OpenBSD: ec_lcl.h,v 1.16 2021/04/20 17:28:18 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 | */ |
@@ -122,16 +122,16 @@ struct ec_method_st { | |||
122 | int (*point_copy)(EC_POINT *, const EC_POINT *); | 122 | int (*point_copy)(EC_POINT *, const EC_POINT *); |
123 | 123 | ||
124 | /* used by EC_POINT_set_to_infinity, | 124 | /* used by EC_POINT_set_to_infinity, |
125 | * EC_POINT_set_Jprojective_coordinates_GFp, | 125 | * EC_POINT_set_Jprojective_coordinates, |
126 | * EC_POINT_get_Jprojective_coordinates_GFp, | 126 | * EC_POINT_get_Jprojective_coordinates, |
127 | * EC_POINT_set_affine_coordinates, | 127 | * EC_POINT_set_affine_coordinates, |
128 | * EC_POINT_get_affine_coordinates, | 128 | * EC_POINT_get_affine_coordinates, |
129 | * EC_POINT_set_compressed_coordinates_GFp, ..._GF2m: | 129 | * EC_POINT_set_compressed_coordinates_GFp, ..._GF2m: |
130 | */ | 130 | */ |
131 | int (*point_set_to_infinity)(const EC_GROUP *, EC_POINT *); | 131 | int (*point_set_to_infinity)(const EC_GROUP *, EC_POINT *); |
132 | int (*point_set_Jprojective_coordinates_GFp)(const EC_GROUP *, EC_POINT *, | 132 | int (*point_set_Jprojective_coordinates)(const EC_GROUP *, EC_POINT *, |
133 | const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *); | 133 | const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *); |
134 | int (*point_get_Jprojective_coordinates_GFp)(const EC_GROUP *, const EC_POINT *, | 134 | int (*point_get_Jprojective_coordinates)(const EC_GROUP *, const EC_POINT *, |
135 | BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *); | 135 | BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *); |
136 | int (*point_set_affine_coordinates)(const EC_GROUP *, EC_POINT *, | 136 | int (*point_set_affine_coordinates)(const EC_GROUP *, EC_POINT *, |
137 | const BIGNUM *x, const BIGNUM *y, BN_CTX *); | 137 | const BIGNUM *x, const BIGNUM *y, BN_CTX *); |
@@ -320,10 +320,10 @@ void ec_GFp_simple_point_finish(EC_POINT *); | |||
320 | void ec_GFp_simple_point_clear_finish(EC_POINT *); | 320 | void ec_GFp_simple_point_clear_finish(EC_POINT *); |
321 | int ec_GFp_simple_point_copy(EC_POINT *, const EC_POINT *); | 321 | int ec_GFp_simple_point_copy(EC_POINT *, const EC_POINT *); |
322 | int ec_GFp_simple_point_set_to_infinity(const EC_GROUP *, EC_POINT *); | 322 | int ec_GFp_simple_point_set_to_infinity(const EC_GROUP *, EC_POINT *); |
323 | int ec_GFp_simple_set_Jprojective_coordinates_GFp(const EC_GROUP *, EC_POINT *, | 323 | int ec_GFp_simple_set_Jprojective_coordinates(const EC_GROUP *, EC_POINT *, |
324 | const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *); | 324 | const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *); |
325 | int ec_GFp_simple_get_Jprojective_coordinates_GFp(const EC_GROUP *, const EC_POINT *, | 325 | int ec_GFp_simple_get_Jprojective_coordinates(const EC_GROUP *, |
326 | BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *); | 326 | const EC_POINT *, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *); |
327 | int ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP *, EC_POINT *, | 327 | int ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP *, EC_POINT *, |
328 | const BIGNUM *x, const BIGNUM *y, BN_CTX *); | 328 | const BIGNUM *x, const BIGNUM *y, BN_CTX *); |
329 | int ec_GFp_simple_point_get_affine_coordinates(const EC_GROUP *, const EC_POINT *, | 329 | int ec_GFp_simple_point_get_affine_coordinates(const EC_GROUP *, const EC_POINT *, |