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, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/e_idea.c b/src/lib/libcrypto/evp/e_idea.c
index 025a1f5087..86cf77602a 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.21 2024/01/04 17:38:36 tb Exp $ */ 1/* $OpenBSD: e_idea.c,v 1.22 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 *
@@ -196,6 +196,7 @@ EVP_idea_cbc(void)
196{ 196{
197 return &idea_cbc; 197 return &idea_cbc;
198} 198}
199LCRYPTO_ALIAS(EVP_idea_cbc);
199 200
200static const EVP_CIPHER idea_cfb64 = { 201static const EVP_CIPHER idea_cfb64 = {
201 .nid = NID_idea_cfb64, 202 .nid = NID_idea_cfb64,
@@ -217,6 +218,7 @@ EVP_idea_cfb64(void)
217{ 218{
218 return &idea_cfb64; 219 return &idea_cfb64;
219} 220}
221LCRYPTO_ALIAS(EVP_idea_cfb64);
220 222
221static const EVP_CIPHER idea_ofb = { 223static const EVP_CIPHER idea_ofb = {
222 .nid = NID_idea_ofb64, 224 .nid = NID_idea_ofb64,
@@ -238,6 +240,7 @@ EVP_idea_ofb(void)
238{ 240{
239 return &idea_ofb; 241 return &idea_ofb;
240} 242}
243LCRYPTO_ALIAS(EVP_idea_ofb);
241 244
242static const EVP_CIPHER idea_ecb = { 245static const EVP_CIPHER idea_ecb = {
243 .nid = NID_idea_ecb, 246 .nid = NID_idea_ecb,
@@ -259,4 +262,5 @@ EVP_idea_ecb(void)
259{ 262{
260 return &idea_ecb; 263 return &idea_ecb;
261} 264}
265LCRYPTO_ALIAS(EVP_idea_ecb);
262#endif 266#endif