From 8fece3355a76bf9c82d13b5389f88a3649c1e547 Mon Sep 17 00:00:00 2001 From: Shane Lontis Date: Thu, 10 Oct 2019 16:42:20 +1000 Subject: Add rc4_hmac_md5 cipher to default provider Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/10179) --- providers/defltprov.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'providers/defltprov.c') diff --git a/providers/defltprov.c b/providers/defltprov.c index 186f1f5368..5384028a8d 100644 --- a/providers/defltprov.c +++ b/providers/defltprov.c @@ -285,6 +285,9 @@ static const OSSL_ALGORITHM deflt_ciphers[] = { #ifndef OPENSSL_NO_RC4 { "RC4", "default=yes", rc4128_functions }, { "RC4-40", "default=yes", rc440_functions }, +# ifndef OPENSSL_NO_MD5 + { "RC4-HMAC-MD5", "default=yes", rc4_hmac_md5_functions }, +# endif /* OPENSSL_NO_MD5 */ #endif /* OPENSSL_NO_RC4 */ #ifndef OPENSSL_NO_RC5 { "RC5-ECB", "default=yes", rc5128ecb_functions }, -- cgit v1.2.3