diff options
Diffstat (limited to 'src/lib/libcrypto/evp/e_bf.c')
| -rw-r--r-- | src/lib/libcrypto/evp/e_bf.c | 6 |
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 | } |
| 180 | LCRYPTO_ALIAS(EVP_bf_cbc); | ||
| 180 | 181 | ||
| 181 | static const EVP_CIPHER bf_cfb64 = { | 182 | static 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 | } |
| 202 | LCRYPTO_ALIAS(EVP_bf_cfb64); | ||
| 201 | 203 | ||
| 202 | static const EVP_CIPHER bf_ofb = { | 204 | static 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 | } |
| 224 | LCRYPTO_ALIAS(EVP_bf_ofb); | ||
| 222 | 225 | ||
| 223 | static const EVP_CIPHER bf_ecb = { | 226 | static 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 | } |
| 246 | LCRYPTO_ALIAS(EVP_bf_ecb); | ||
| 243 | #endif | 247 | #endif |
