diff options
author | beck <> | 2023-07-07 13:54:46 +0000 |
---|---|---|
committer | beck <> | 2023-07-07 13:54:46 +0000 |
commit | 6bba0b0cef45b790c7a98a818e6018c91de8af0b (patch) | |
tree | 8637b2fb4bca234d55b598e035f23335be46ce49 /src/lib/libcrypto/ec/ec_print.c | |
parent | fcdb286fc308a6ce5c66d8a4653f2e2e6c4903ed (diff) | |
download | openbsd-6bba0b0cef45b790c7a98a818e6018c91de8af0b.tar.gz openbsd-6bba0b0cef45b790c7a98a818e6018c91de8af0b.tar.bz2 openbsd-6bba0b0cef45b790c7a98a818e6018c91de8af0b.zip |
Hide symbols in hkdf, evp, err, ecdsa, and ec
(part 2 of commit)
ok jsing@
Diffstat (limited to 'src/lib/libcrypto/ec/ec_print.c')
-rw-r--r-- | src/lib/libcrypto/ec/ec_print.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/ec/ec_print.c b/src/lib/libcrypto/ec/ec_print.c index da33c4eccd..312770f66c 100644 --- a/src/lib/libcrypto/ec/ec_print.c +++ b/src/lib/libcrypto/ec/ec_print.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ec_print.c,v 1.12 2023/06/23 10:34:16 tb Exp $ */ | 1 | /* $OpenBSD: ec_print.c,v 1.13 2023/07/07 13:54:45 beck Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -81,6 +81,7 @@ EC_POINT_point2bn(const EC_GROUP *group, const EC_POINT *point, | |||
81 | 81 | ||
82 | return ret; | 82 | return ret; |
83 | } | 83 | } |
84 | LCRYPTO_ALIAS(EC_POINT_point2bn); | ||
84 | 85 | ||
85 | EC_POINT * | 86 | EC_POINT * |
86 | EC_POINT_bn2point(const EC_GROUP *group, | 87 | EC_POINT_bn2point(const EC_GROUP *group, |
@@ -117,6 +118,7 @@ EC_POINT_bn2point(const EC_GROUP *group, | |||
117 | free(buf); | 118 | free(buf); |
118 | return ret; | 119 | return ret; |
119 | } | 120 | } |
121 | LCRYPTO_ALIAS(EC_POINT_bn2point); | ||
120 | 122 | ||
121 | static const char *HEX_DIGITS = "0123456789ABCDEF"; | 123 | static const char *HEX_DIGITS = "0123456789ABCDEF"; |
122 | 124 | ||
@@ -159,6 +161,7 @@ EC_POINT_point2hex(const EC_GROUP *group, const EC_POINT *point, | |||
159 | 161 | ||
160 | return ret; | 162 | return ret; |
161 | } | 163 | } |
164 | LCRYPTO_ALIAS(EC_POINT_point2hex); | ||
162 | 165 | ||
163 | EC_POINT * | 166 | EC_POINT * |
164 | EC_POINT_hex2point(const EC_GROUP *group, const char *buf, | 167 | EC_POINT_hex2point(const EC_GROUP *group, const char *buf, |
@@ -176,3 +179,4 @@ EC_POINT_hex2point(const EC_GROUP *group, const char *buf, | |||
176 | 179 | ||
177 | return ret; | 180 | return ret; |
178 | } | 181 | } |
182 | LCRYPTO_ALIAS(EC_POINT_hex2point); | ||