summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2019-10-10 16:42:20 +1000
committerShane Lontis <shane.lontis@oracle.com>2019-11-11 10:04:46 +1000
commit8fece3355a76bf9c82d13b5389f88a3649c1e547 (patch)
tree92e5673891932ff8715a2253c8ef87a1618631b0 /crypto
parent1903a9b77af1aa289ce858de90790f3e2749fea9 (diff)
Add rc4_hmac_md5 cipher to default provider
Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10179)
Diffstat (limited to 'crypto')
-rw-r--r--crypto/evp/evp_enc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/evp/evp_enc.c b/crypto/evp/evp_enc.c
index ec02283b5e..3346e57dae 100644
--- a/crypto/evp/evp_enc.c
+++ b/crypto/evp/evp_enc.c
@@ -283,6 +283,7 @@ int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
case NID_rc2_ofb64:
case NID_chacha20:
case NID_chacha20_poly1305:
+ case NID_rc4_hmac_md5:
break;
default:
goto legacy;