summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ec/ec_lib.c
diff options
context:
space:
mode:
authorbeck <>2023-07-07 19:37:54 +0000
committerbeck <>2023-07-07 19:37:54 +0000
commit8d42940c1d19bb9bd4ce45580f18a59069225432 (patch)
treeb1fe16b4625998f0f024f4d3eef5d59a3e905a9a /src/lib/libcrypto/ec/ec_lib.c
parent1c5e77a1d6f97589e2bca622f3313c1418f9a535 (diff)
downloadopenbsd-8d42940c1d19bb9bd4ce45580f18a59069225432.tar.gz
openbsd-8d42940c1d19bb9bd4ce45580f18a59069225432.tar.bz2
openbsd-8d42940c1d19bb9bd4ce45580f18a59069225432.zip
Unbreak the namespace build after a broken mk.conf and tool misfire had
me aliasing symbols not in the headers I was procesing. This unbreaks the namespace build so it will pass again ok tb@
Diffstat (limited to 'src/lib/libcrypto/ec/ec_lib.c')
-rw-r--r--src/lib/libcrypto/ec/ec_lib.c10
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}
139LCRYPTO_ALIAS(EC_GROUP_clear_free);
140 139
141int 140int
142EC_GROUP_copy(EC_GROUP *dest, const EC_GROUP *src) 141EC_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}
546LCRYPTO_ALIAS(EC_GROUP_set_curve_GFp);
547 545
548int 546int
549EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, 547EC_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}
554LCRYPTO_ALIAS(EC_GROUP_get_curve_GFp);
555 552
556int 553int
557EC_GROUP_get_degree(const EC_GROUP *group) 554EC_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}
733LCRYPTO_ALIAS(EC_POINT_clear_free);
734 730
735int 731int
736EC_POINT_copy(EC_POINT *dest, const EC_POINT *src) 732EC_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}
869LCRYPTO_ALIAS(EC_POINT_set_Jprojective_coordinates_GFp);
870 865
871int 866int
872EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, 867EC_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}
877LCRYPTO_ALIAS(EC_POINT_get_Jprojective_coordinates_GFp);
878 872
879int 873int
880EC_POINT_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, 874EC_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}
923LCRYPTO_ALIAS(EC_POINT_set_affine_coordinates_GFp);
924 917
925int 918int
926EC_POINT_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, 919EC_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}
961LCRYPTO_ALIAS(EC_POINT_get_affine_coordinates_GFp);
962 954
963int 955int
964EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, 956EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a,