diff options
| author | tb <> | 2021-04-20 17:28:18 +0000 |
|---|---|---|
| committer | tb <> | 2021-04-20 17:28:18 +0000 |
| commit | 4c5b30b47dcb1bfe14ac8c29c7cf559fb5844541 (patch) | |
| tree | 84821870dcd67fd9178210e1adcc84248265dab1 /src/lib/libcrypto/ec/ecp_mont.c | |
| parent | 51b396b145b6146bbdaac4d315068130e31179df (diff) | |
| download | openbsd-4c5b30b47dcb1bfe14ac8c29c7cf559fb5844541.tar.gz openbsd-4c5b30b47dcb1bfe14ac8c29c7cf559fb5844541.tar.bz2 openbsd-4c5b30b47dcb1bfe14ac8c29c7cf559fb5844541.zip | |
Provide EC_POINT_{g,s}et_Jprojective_coordinates for internal use
ok jsing
Diffstat (limited to 'src/lib/libcrypto/ec/ecp_mont.c')
| -rw-r--r-- | src/lib/libcrypto/ec/ecp_mont.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libcrypto/ec/ecp_mont.c b/src/lib/libcrypto/ec/ecp_mont.c index f4dff9aa46..7160692e9e 100644 --- a/src/lib/libcrypto/ec/ecp_mont.c +++ b/src/lib/libcrypto/ec/ecp_mont.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: ecp_mont.c,v 1.17 2018/11/05 20:18:21 tb Exp $ */ | 1 | /* $OpenBSD: ecp_mont.c,v 1.18 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 | */ |
| @@ -86,10 +86,10 @@ EC_GFp_mont_method(void) | |||
| 86 | .point_clear_finish = ec_GFp_simple_point_clear_finish, | 86 | .point_clear_finish = ec_GFp_simple_point_clear_finish, |
| 87 | .point_copy = ec_GFp_simple_point_copy, | 87 | .point_copy = ec_GFp_simple_point_copy, |
| 88 | .point_set_to_infinity = ec_GFp_simple_point_set_to_infinity, | 88 | .point_set_to_infinity = ec_GFp_simple_point_set_to_infinity, |
| 89 | .point_set_Jprojective_coordinates_GFp = | 89 | .point_set_Jprojective_coordinates = |
| 90 | ec_GFp_simple_set_Jprojective_coordinates_GFp, | 90 | ec_GFp_simple_set_Jprojective_coordinates, |
| 91 | .point_get_Jprojective_coordinates_GFp = | 91 | .point_get_Jprojective_coordinates = |
| 92 | ec_GFp_simple_get_Jprojective_coordinates_GFp, | 92 | ec_GFp_simple_get_Jprojective_coordinates, |
| 93 | .point_set_affine_coordinates = | 93 | .point_set_affine_coordinates = |
| 94 | ec_GFp_simple_point_set_affine_coordinates, | 94 | ec_GFp_simple_point_set_affine_coordinates, |
| 95 | .point_get_affine_coordinates = | 95 | .point_get_affine_coordinates = |
