summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/e_bf.c
diff options
context:
space:
mode:
authorbeck <>2023-07-07 13:54:46 +0000
committerbeck <>2023-07-07 13:54:46 +0000
commitf9fcde20a6214da85e802190ccd3a2bf5f891559 (patch)
tree8637b2fb4bca234d55b598e035f23335be46ce49 /src/lib/libcrypto/evp/e_bf.c
parent96c313e4aac4001ae9818efee3f34856cdf873b0 (diff)
downloadopenbsd-f9fcde20a6214da85e802190ccd3a2bf5f891559.tar.gz
openbsd-f9fcde20a6214da85e802190ccd3a2bf5f891559.tar.bz2
openbsd-f9fcde20a6214da85e802190ccd3a2bf5f891559.zip
Hide symbols in hkdf, evp, err, ecdsa, and ec
(part 2 of commit) ok jsing@
Diffstat (limited to 'src/lib/libcrypto/evp/e_bf.c')
-rw-r--r--src/lib/libcrypto/evp/e_bf.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/e_bf.c b/src/lib/libcrypto/evp/e_bf.c
index c2ab3178a5..4e671fab3e 100644
--- a/src/lib/libcrypto/evp/e_bf.c
+++ b/src/lib/libcrypto/evp/e_bf.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: e_bf.c,v 1.15 2022/11/26 16:08:52 tb Exp $ */ 1/* $OpenBSD: e_bf.c,v 1.16 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 *
@@ -178,6 +178,7 @@ EVP_bf_cbc(void)
178{ 178{
179 return &bf_cbc; 179 return &bf_cbc;
180} 180}
181LCRYPTO_ALIAS(EVP_bf_cbc);
181 182
182static const EVP_CIPHER bf_cfb64 = { 183static const EVP_CIPHER bf_cfb64 = {
183 .nid = NID_bf_cfb64, 184 .nid = NID_bf_cfb64,
@@ -200,6 +201,7 @@ EVP_bf_cfb64(void)
200{ 201{
201 return &bf_cfb64; 202 return &bf_cfb64;
202} 203}
204LCRYPTO_ALIAS(EVP_bf_cfb64);
203 205
204static const EVP_CIPHER bf_ofb = { 206static const EVP_CIPHER bf_ofb = {
205 .nid = NID_bf_ofb64, 207 .nid = NID_bf_ofb64,
@@ -222,6 +224,7 @@ EVP_bf_ofb(void)
222{ 224{
223 return &bf_ofb; 225 return &bf_ofb;
224} 226}
227LCRYPTO_ALIAS(EVP_bf_ofb);
225 228
226static const EVP_CIPHER bf_ecb = { 229static const EVP_CIPHER bf_ecb = {
227 .nid = NID_bf_ecb, 230 .nid = NID_bf_ecb,
@@ -244,4 +247,5 @@ EVP_bf_ecb(void)
244{ 247{
245 return &bf_ecb; 248 return &bf_ecb;
246} 249}
250LCRYPTO_ALIAS(EVP_bf_ecb);
247#endif 251#endif