summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/e_idea.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/evp/e_idea.c')
-rw-r--r--src/lib/libcrypto/evp/e_idea.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libcrypto/evp/e_idea.c b/src/lib/libcrypto/evp/e_idea.c
index e330888ba6..b2129dc990 100644
--- a/src/lib/libcrypto/evp/e_idea.c
+++ b/src/lib/libcrypto/evp/e_idea.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: e_idea.c,v 1.19 2023/07/07 13:54:45 beck Exp $ */ 1/* $OpenBSD: e_idea.c,v 1.20 2023/07/07 19:37:53 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 *
@@ -197,7 +197,6 @@ EVP_idea_cbc(void)
197{ 197{
198 return &idea_cbc; 198 return &idea_cbc;
199} 199}
200LCRYPTO_ALIAS(EVP_idea_cbc);
201 200
202static const EVP_CIPHER idea_cfb64 = { 201static const EVP_CIPHER idea_cfb64 = {
203 .nid = NID_idea_cfb64, 202 .nid = NID_idea_cfb64,
@@ -220,7 +219,6 @@ EVP_idea_cfb64(void)
220{ 219{
221 return &idea_cfb64; 220 return &idea_cfb64;
222} 221}
223LCRYPTO_ALIAS(EVP_idea_cfb64);
224 222
225static const EVP_CIPHER idea_ofb = { 223static const EVP_CIPHER idea_ofb = {
226 .nid = NID_idea_ofb64, 224 .nid = NID_idea_ofb64,
@@ -243,7 +241,6 @@ EVP_idea_ofb(void)
243{ 241{
244 return &idea_ofb; 242 return &idea_ofb;
245} 243}
246LCRYPTO_ALIAS(EVP_idea_ofb);
247 244
248static const EVP_CIPHER idea_ecb = { 245static const EVP_CIPHER idea_ecb = {
249 .nid = NID_idea_ecb, 246 .nid = NID_idea_ecb,
@@ -266,5 +263,4 @@ EVP_idea_ecb(void)
266{ 263{
267 return &idea_ecb; 264 return &idea_ecb;
268} 265}
269LCRYPTO_ALIAS(EVP_idea_ecb);
270#endif 266#endif