diff options
Diffstat (limited to 'src/lib/libcrypto/evp/e_cast.c')
| -rw-r--r-- | src/lib/libcrypto/evp/e_cast.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/e_cast.c b/src/lib/libcrypto/evp/e_cast.c index 5c3e504835..1575a7a5bb 100644 --- a/src/lib/libcrypto/evp/e_cast.c +++ b/src/lib/libcrypto/evp/e_cast.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: e_cast.c,v 1.17 2024/01/04 17:38:36 tb Exp $ */ | 1 | /* $OpenBSD: e_cast.c,v 1.18 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_cast5_cbc(void) | |||
| 177 | { | 177 | { |
| 178 | return &cast5_cbc; | 178 | return &cast5_cbc; |
| 179 | } | 179 | } |
| 180 | LCRYPTO_ALIAS(EVP_cast5_cbc); | ||
| 180 | 181 | ||
| 181 | static const EVP_CIPHER cast5_cfb64 = { | 182 | static const EVP_CIPHER cast5_cfb64 = { |
| 182 | .nid = NID_cast5_cfb64, | 183 | .nid = NID_cast5_cfb64, |
| @@ -198,6 +199,7 @@ EVP_cast5_cfb64(void) | |||
| 198 | { | 199 | { |
| 199 | return &cast5_cfb64; | 200 | return &cast5_cfb64; |
| 200 | } | 201 | } |
| 202 | LCRYPTO_ALIAS(EVP_cast5_cfb64); | ||
| 201 | 203 | ||
| 202 | static const EVP_CIPHER cast5_ofb = { | 204 | static const EVP_CIPHER cast5_ofb = { |
| 203 | .nid = NID_cast5_ofb64, | 205 | .nid = NID_cast5_ofb64, |
| @@ -219,6 +221,7 @@ EVP_cast5_ofb(void) | |||
| 219 | { | 221 | { |
| 220 | return &cast5_ofb; | 222 | return &cast5_ofb; |
| 221 | } | 223 | } |
| 224 | LCRYPTO_ALIAS(EVP_cast5_ofb); | ||
| 222 | 225 | ||
| 223 | static const EVP_CIPHER cast5_ecb = { | 226 | static const EVP_CIPHER cast5_ecb = { |
| 224 | .nid = NID_cast5_ecb, | 227 | .nid = NID_cast5_ecb, |
| @@ -240,4 +243,5 @@ EVP_cast5_ecb(void) | |||
| 240 | { | 243 | { |
| 241 | return &cast5_ecb; | 244 | return &cast5_ecb; |
| 242 | } | 245 | } |
| 246 | LCRYPTO_ALIAS(EVP_cast5_ecb); | ||
| 243 | #endif | 247 | #endif |
