mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 23:08:39 +09:00
Add RSA-AES + SHA256/384 suites for web compatibility.
Sites with these ciphers (commonly IIS) would otherwise fall back to weak 3DES that will be disabled by default. Issue #4 points 2 and 3
This commit is contained in:
parent
3ecea693f6
commit
05d35d3d18
2 changed files with 12 additions and 0 deletions
|
|
@ -1361,6 +1361,10 @@ static const CipherPref sCipherPrefs[] = {
|
|||
{ "security.tls13.aes_256_gcm_sha384",
|
||||
TLS_AES_256_GCM_SHA384, true },
|
||||
|
||||
{ "security.ssl3.rsa_aes_256_gcm_sha384",
|
||||
TLS_RSA_WITH_AES_256_GCM_SHA384, true },
|
||||
{ "security.ssl3.rsa_aes_256_sha256",
|
||||
TLS_RSA_WITH_AES_256_CBC_SHA256, true },
|
||||
{"security.ssl3.rsa_camellia_128_sha",
|
||||
TLS_RSA_WITH_CAMELLIA_128_CBC_SHA, true },
|
||||
{"security.ssl3.rsa_camellia_256_sha",
|
||||
|
|
@ -1369,6 +1373,10 @@ static const CipherPref sCipherPrefs[] = {
|
|||
TLS_RSA_WITH_AES_128_CBC_SHA, true }, // deprecated (RSA key exchange)
|
||||
{ "security.ssl3.rsa_aes_256_sha",
|
||||
TLS_RSA_WITH_AES_256_CBC_SHA, true }, // deprecated (RSA key exchange)
|
||||
{ "security.ssl3.rsa_aes_128_gcm_sha256",
|
||||
TLS_RSA_WITH_AES_128_GCM_SHA256, false }, // Deprecated
|
||||
{ "security.ssl3.rsa_aes_128_sha256",
|
||||
TLS_RSA_WITH_AES_128_CBC_SHA256, false }, // Deprecated
|
||||
{ "security.ssl3.rsa_des_ede3_sha",
|
||||
TLS_RSA_WITH_3DES_EDE_CBC_SHA, true }, // deprecated (RSA key exchange, 3DES)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue