diff options
author | tb <> | 2021-04-20 17:28:18 +0000 |
---|---|---|
committer | tb <> | 2021-04-20 17:28:18 +0000 |
commit | d4cd97c94eead199a5ddfade40166ffd21d00609 (patch) | |
tree | 84821870dcd67fd9178210e1adcc84248265dab1 /src/lib/libcrypto/ec/ecp_nist.c | |
parent | b567b8b60d2a8021e06cc33d2fee8b1cf180eac5 (diff) | |
download | openbsd-d4cd97c94eead199a5ddfade40166ffd21d00609.tar.gz openbsd-d4cd97c94eead199a5ddfade40166ffd21d00609.tar.bz2 openbsd-d4cd97c94eead199a5ddfade40166ffd21d00609.zip |
Provide EC_POINT_{g,s}et_Jprojective_coordinates for internal use
ok jsing
Diffstat (limited to 'src/lib/libcrypto/ec/ecp_nist.c')
-rw-r--r-- | src/lib/libcrypto/ec/ecp_nist.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libcrypto/ec/ecp_nist.c b/src/lib/libcrypto/ec/ecp_nist.c index 073c0419cf..c34c708025 100644 --- a/src/lib/libcrypto/ec/ecp_nist.c +++ b/src/lib/libcrypto/ec/ecp_nist.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ecp_nist.c,v 1.15 2018/11/05 20:18:21 tb Exp $ */ | 1 | /* $OpenBSD: ecp_nist.c,v 1.16 2021/04/20 17:28:18 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Written by Nils Larsch for the OpenSSL project. | 3 | * Written by Nils Larsch for the OpenSSL project. |
4 | */ | 4 | */ |
@@ -87,10 +87,10 @@ EC_GFp_nist_method(void) | |||
87 | .point_clear_finish = ec_GFp_simple_point_clear_finish, | 87 | .point_clear_finish = ec_GFp_simple_point_clear_finish, |
88 | .point_copy = ec_GFp_simple_point_copy, | 88 | .point_copy = ec_GFp_simple_point_copy, |
89 | .point_set_to_infinity = ec_GFp_simple_point_set_to_infinity, | 89 | .point_set_to_infinity = ec_GFp_simple_point_set_to_infinity, |
90 | .point_set_Jprojective_coordinates_GFp = | 90 | .point_set_Jprojective_coordinates = |
91 | ec_GFp_simple_set_Jprojective_coordinates_GFp, | 91 | ec_GFp_simple_set_Jprojective_coordinates, |
92 | .point_get_Jprojective_coordinates_GFp = | 92 | .point_get_Jprojective_coordinates = |
93 | ec_GFp_simple_get_Jprojective_coordinates_GFp, | 93 | ec_GFp_simple_get_Jprojective_coordinates, |
94 | .point_set_affine_coordinates = | 94 | .point_set_affine_coordinates = |
95 | ec_GFp_simple_point_set_affine_coordinates, | 95 | ec_GFp_simple_point_set_affine_coordinates, |
96 | .point_get_affine_coordinates = | 96 | .point_get_affine_coordinates = |