summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2019-09-18 15:57:08 +1000
committerShane Lontis <shane.lontis@oracle.com>2019-09-18 15:57:08 +1000
commitf22431f2cd9e96cf75fd020c6e5019ff58f710cf (patch)
treec699b366e86c6a4754b3fc38a04ef91bf1373e91 /crypto
parentecae0575103918868b29cc11aa35e3b91fe7dcc8 (diff)
Add IDEA ciphers to default provider
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9917)
Diffstat (limited to 'crypto')
-rw-r--r--crypto/evp/evp_enc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/evp/evp_enc.c b/crypto/evp/evp_enc.c
index 9a4e40d9a9..b0eff2d528 100644
--- a/crypto/evp/evp_enc.c
+++ b/crypto/evp/evp_enc.c
@@ -235,6 +235,10 @@ int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
case NID_bf_ecb:
case NID_bf_cfb64:
case NID_bf_ofb64:
+ case NID_idea_cbc:
+ case NID_idea_ecb:
+ case NID_idea_cfb64:
+ case NID_idea_ofb64:
break;
default:
goto legacy;