mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8208350: Disable all DES cipher suites
Reviewed-by: xuelei, mullan
This commit is contained in:
parent
95db6924f2
commit
8eb45613db
4 changed files with 366 additions and 20 deletions
|
@ -435,12 +435,12 @@ enum CipherSuite {
|
|||
0x0003, false, "SSL_RSA_EXPORT_WITH_RC4_40_MD5",
|
||||
"TLS_RSA_EXPORT_WITH_RC4_40_MD5",
|
||||
ProtocolVersion.PROTOCOLS_TO_10,
|
||||
K_RSA_EXPORT, B_DES_40, M_MD5, H_NONE),
|
||||
K_RSA_EXPORT, B_RC4_40, M_MD5, H_NONE),
|
||||
SSL_DH_anon_EXPORT_WITH_RC4_40_MD5(
|
||||
0x0017, false, "SSL_DH_anon_EXPORT_WITH_RC4_40_MD5",
|
||||
"TLS_DH_anon_EXPORT_WITH_RC4_40_MD5",
|
||||
ProtocolVersion.PROTOCOLS_TO_10,
|
||||
K_DH_ANON, B_DES_40, M_MD5, H_NONE),
|
||||
K_DH_ANON, B_RC4_40, M_MD5, H_NONE),
|
||||
|
||||
// no traffic encryption cipher suites
|
||||
TLS_RSA_WITH_NULL_SHA256(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue