summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2019-09-18 22:13:59 +1000
committerShane Lontis <shane.lontis@oracle.com>2019-09-18 22:13:59 +1000
commit70adc64632dde9359c8c1c23d01ef7f68d51382e (patch)
tree4a2773f14dde1e47f4920f0d3fb094e3cfba1415 /crypto
parent9a92bf1bffad15ede5ac97d1f1705c3e2c249a98 (diff)
Add SEED ciphers to default provider
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9932)
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 383480b737..4d6001688f 100644
--- a/crypto/evp/evp_enc.c
+++ b/crypto/evp/evp_enc.c
@@ -243,6 +243,10 @@ int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
case NID_cast5_ecb:
case NID_cast5_cfb64:
case NID_cast5_ofb64:
+ case NID_seed_cbc:
+ case NID_seed_ecb:
+ case NID_seed_cfb128:
+ case NID_seed_ofb128:
break;
default:
goto legacy;