summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/e_bf.c
diff options
context:
space:
mode:
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