diff options
Diffstat (limited to 'src/lib/libcrypto/ec/ec_lib.c')
-rw-r--r-- | src/lib/libcrypto/ec/ec_lib.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/lib/libcrypto/ec/ec_lib.c b/src/lib/libcrypto/ec/ec_lib.c index 3db1ca2f07..b5788492cc 100644 --- a/src/lib/libcrypto/ec/ec_lib.c +++ b/src/lib/libcrypto/ec/ec_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ec_lib.c,v 1.63 2023/07/07 13:54:45 beck Exp $ */ | 1 | /* $OpenBSD: ec_lib.c,v 1.64 2023/07/07 19:37:53 beck 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 | */ |
@@ -136,7 +136,6 @@ EC_GROUP_clear_free(EC_GROUP *group) | |||
136 | { | 136 | { |
137 | EC_GROUP_free(group); | 137 | EC_GROUP_free(group); |
138 | } | 138 | } |
139 | LCRYPTO_ALIAS(EC_GROUP_clear_free); | ||
140 | 139 | ||
141 | int | 140 | int |
142 | EC_GROUP_copy(EC_GROUP *dest, const EC_GROUP *src) | 141 | EC_GROUP_copy(EC_GROUP *dest, const EC_GROUP *src) |
@@ -543,7 +542,6 @@ EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, | |||
543 | { | 542 | { |
544 | return EC_GROUP_set_curve(group, p, a, b, ctx); | 543 | return EC_GROUP_set_curve(group, p, a, b, ctx); |
545 | } | 544 | } |
546 | LCRYPTO_ALIAS(EC_GROUP_set_curve_GFp); | ||
547 | 545 | ||
548 | int | 546 | int |
549 | EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, | 547 | EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, |
@@ -551,7 +549,6 @@ EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, | |||
551 | { | 549 | { |
552 | return EC_GROUP_get_curve(group, p, a, b, ctx); | 550 | return EC_GROUP_get_curve(group, p, a, b, ctx); |
553 | } | 551 | } |
554 | LCRYPTO_ALIAS(EC_GROUP_get_curve_GFp); | ||
555 | 552 | ||
556 | int | 553 | int |
557 | EC_GROUP_get_degree(const EC_GROUP *group) | 554 | EC_GROUP_get_degree(const EC_GROUP *group) |
@@ -730,7 +727,6 @@ EC_POINT_clear_free(EC_POINT *point) | |||
730 | { | 727 | { |
731 | EC_POINT_free(point); | 728 | EC_POINT_free(point); |
732 | } | 729 | } |
733 | LCRYPTO_ALIAS(EC_POINT_clear_free); | ||
734 | 730 | ||
735 | int | 731 | int |
736 | EC_POINT_copy(EC_POINT *dest, const EC_POINT *src) | 732 | EC_POINT_copy(EC_POINT *dest, const EC_POINT *src) |
@@ -866,7 +862,6 @@ EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, | |||
866 | { | 862 | { |
867 | return EC_POINT_set_Jprojective_coordinates(group, point, x, y, z, ctx); | 863 | return EC_POINT_set_Jprojective_coordinates(group, point, x, y, z, ctx); |
868 | } | 864 | } |
869 | LCRYPTO_ALIAS(EC_POINT_set_Jprojective_coordinates_GFp); | ||
870 | 865 | ||
871 | int | 866 | int |
872 | EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, | 867 | EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, |
@@ -874,7 +869,6 @@ EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, | |||
874 | { | 869 | { |
875 | return EC_POINT_get_Jprojective_coordinates(group, point, x, y, z, ctx); | 870 | return EC_POINT_get_Jprojective_coordinates(group, point, x, y, z, ctx); |
876 | } | 871 | } |
877 | LCRYPTO_ALIAS(EC_POINT_get_Jprojective_coordinates_GFp); | ||
878 | 872 | ||
879 | int | 873 | int |
880 | EC_POINT_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, | 874 | EC_POINT_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, |
@@ -920,7 +914,6 @@ EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, | |||
920 | { | 914 | { |
921 | return EC_POINT_set_affine_coordinates(group, point, x, y, ctx); | 915 | return EC_POINT_set_affine_coordinates(group, point, x, y, ctx); |
922 | } | 916 | } |
923 | LCRYPTO_ALIAS(EC_POINT_set_affine_coordinates_GFp); | ||
924 | 917 | ||
925 | int | 918 | int |
926 | EC_POINT_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, | 919 | EC_POINT_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, |
@@ -958,7 +951,6 @@ EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point | |||
958 | { | 951 | { |
959 | return EC_POINT_get_affine_coordinates(group, point, x, y, ctx); | 952 | return EC_POINT_get_affine_coordinates(group, point, x, y, ctx); |
960 | } | 953 | } |
961 | LCRYPTO_ALIAS(EC_POINT_get_affine_coordinates_GFp); | ||
962 | 954 | ||
963 | int | 955 | int |
964 | EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, | 956 | EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, |