summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/e_idea.c
diff options
context:
space:
mode:
authorbeck <>2023-07-07 13:54:46 +0000
committerbeck <>2023-07-07 13:54:46 +0000
commit6bba0b0cef45b790c7a98a818e6018c91de8af0b (patch)
tree8637b2fb4bca234d55b598e035f23335be46ce49 /src/lib/libcrypto/evp/e_idea.c
parentfcdb286fc308a6ce5c66d8a4653f2e2e6c4903ed (diff)
downloadopenbsd-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/evp/e_idea.c')
-rw-r--r--src/lib/libcrypto/evp/e_idea.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/e_idea.c b/src/lib/libcrypto/evp/e_idea.c
index b8349ee9cb..e330888ba6 100644
--- a/src/lib/libcrypto/evp/e_idea.c
+++ b/src/lib/libcrypto/evp/e_idea.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: e_idea.c,v 1.18 2022/11/26 16:08:52 tb Exp $ */ 1/* $OpenBSD: e_idea.c,v 1.19 2023/07/07 13:54:45 beck Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -197,6 +197,7 @@ EVP_idea_cbc(void)
197{ 197{
198 return &idea_cbc; 198 return &idea_cbc;
199} 199}
200LCRYPTO_ALIAS(EVP_idea_cbc);
200 201
201static const EVP_CIPHER idea_cfb64 = { 202static const EVP_CIPHER idea_cfb64 = {
202 .nid = NID_idea_cfb64, 203 .nid = NID_idea_cfb64,
@@ -219,6 +220,7 @@ EVP_idea_cfb64(void)
219{ 220{
220 return &idea_cfb64; 221 return &idea_cfb64;
221} 222}
223LCRYPTO_ALIAS(EVP_idea_cfb64);
222 224
223static const EVP_CIPHER idea_ofb = { 225static const EVP_CIPHER idea_ofb = {
224 .nid = NID_idea_ofb64, 226 .nid = NID_idea_ofb64,
@@ -241,6 +243,7 @@ EVP_idea_ofb(void)
241{ 243{
242 return &idea_ofb; 244 return &idea_ofb;
243} 245}
246LCRYPTO_ALIAS(EVP_idea_ofb);
244 247
245static const EVP_CIPHER idea_ecb = { 248static const EVP_CIPHER idea_ecb = {
246 .nid = NID_idea_ecb, 249 .nid = NID_idea_ecb,
@@ -263,4 +266,5 @@ EVP_idea_ecb(void)
263{ 266{
264 return &idea_ecb; 267 return &idea_ecb;
265} 268}
269LCRYPTO_ALIAS(EVP_idea_ecb);
266#endif 270#endif