diff options
author | Shane Lontis <shane.lontis@oracle.com> | 2019-09-15 12:06:28 +0200 |
---|---|---|
committer | Shane Lontis <shane.lontis@oracle.com> | 2019-09-15 12:06:28 +0200 |
commit | 55c7dc79274f7256f573d99353f887263b162b7b (patch) | |
tree | e03e4810c1681965dbcff19b5a624695ff70ee0d /crypto | |
parent | Add fips module integrity check (diff) | |
download | openssl-55c7dc79274f7256f573d99353f887263b162b7b.tar.xz openssl-55c7dc79274f7256f573d99353f887263b162b7b.zip |
Add blowfish ciphers to default provider
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9887)
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/evp/evp_enc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/evp/evp_enc.c b/crypto/evp/evp_enc.c index 6d657f76cd..9a4e40d9a9 100644 --- a/crypto/evp/evp_enc.c +++ b/crypto/evp/evp_enc.c @@ -231,6 +231,10 @@ int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, case NID_des_ede_cfb64: case NID_desx_cbc: case NID_id_smime_alg_CMS3DESwrap: + case NID_bf_cbc: + case NID_bf_ecb: + case NID_bf_cfb64: + case NID_bf_ofb64: break; default: goto legacy; |