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 90a589c608..4f3799975b 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.18 2024/01/04 17:38:36 tb Exp $ */ 1/* $OpenBSD: e_bf.c,v 1.19 2024/04/09 13:52:41 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 *
@@ -177,6 +177,7 @@ EVP_bf_cbc(void)
177{ 177{
178 return &bf_cbc; 178 return &bf_cbc;
179} 179}
180LCRYPTO_ALIAS(EVP_bf_cbc);
180 181
181static const EVP_CIPHER bf_cfb64 = { 182static const EVP_CIPHER bf_cfb64 = {
182 .nid = NID_bf_cfb64, 183 .nid = NID_bf_cfb64,
@@ -198,6 +199,7 @@ EVP_bf_cfb64(void)
198{ 199{
199 return &bf_cfb64; 200 return &bf_cfb64;
200} 201}
202LCRYPTO_ALIAS(EVP_bf_cfb64);
201 203
202static const EVP_CIPHER bf_ofb = { 204static const EVP_CIPHER bf_ofb = {
203 .nid = NID_bf_ofb64, 205 .nid = NID_bf_ofb64,
@@ -219,6 +221,7 @@ EVP_bf_ofb(void)
219{ 221{
220 return &bf_ofb; 222 return &bf_ofb;
221} 223}
224LCRYPTO_ALIAS(EVP_bf_ofb);
222 225
223static const EVP_CIPHER bf_ecb = { 226static const EVP_CIPHER bf_ecb = {
224 .nid = NID_bf_ecb, 227 .nid = NID_bf_ecb,
@@ -240,4 +243,5 @@ EVP_bf_ecb(void)
240{ 243{
241 return &bf_ecb; 244 return &bf_ecb;
242} 245}
246LCRYPTO_ALIAS(EVP_bf_ecb);
243#endif 247#endif