mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 916226: Enable ecdhe AES128 CGM ciphers in psm now that nss support them. r=bsmith
--HG-- extra : rebase_source : 82379823637ef6cda9ffd8765881ff30a76b5b46
This commit is contained in:
parent
a20b74b85c
commit
bbd934ff77
@ -52,6 +52,8 @@ pref("security.ssl3.rsa_aes_128_sha", true);
|
|||||||
pref("security.ssl3.dhe_rsa_des_ede3_sha", true);
|
pref("security.ssl3.dhe_rsa_des_ede3_sha", true);
|
||||||
pref("security.ssl3.dhe_dss_des_ede3_sha", true);
|
pref("security.ssl3.dhe_dss_des_ede3_sha", true);
|
||||||
pref("security.ssl3.rsa_seed_sha", true);
|
pref("security.ssl3.rsa_seed_sha", true);
|
||||||
|
pref("security.ssl3.ecdhe_ecdsa_aes_128_gcm_sha256", true);
|
||||||
|
pref("security.ssl3.ecdhe_rsa_aes_128_gcm_sha256", true);
|
||||||
|
|
||||||
pref("security.default_personal_cert", "Ask Every Time");
|
pref("security.default_personal_cert", "Ask Every Time");
|
||||||
pref("security.remember_cert_checkbox_default_setting", true);
|
pref("security.remember_cert_checkbox_default_setting", true);
|
||||||
|
@ -867,6 +867,8 @@ static CipherPref CipherPrefs[] = {
|
|||||||
{"security.ssl3.dhe_rsa_des_ede3_sha", SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA}, // 168-bit Triple DES with RSA, DHE, and a SHA1 MAC
|
{"security.ssl3.dhe_rsa_des_ede3_sha", SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA}, // 168-bit Triple DES with RSA, DHE, and a SHA1 MAC
|
||||||
{"security.ssl3.dhe_dss_des_ede3_sha", SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA}, // 168-bit Triple DES with DSA, DHE, and a SHA1 MAC
|
{"security.ssl3.dhe_dss_des_ede3_sha", SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA}, // 168-bit Triple DES with DSA, DHE, and a SHA1 MAC
|
||||||
{"security.ssl3.rsa_seed_sha", TLS_RSA_WITH_SEED_CBC_SHA}, // SEED encryption with RSA and a SHA1 MAC
|
{"security.ssl3.rsa_seed_sha", TLS_RSA_WITH_SEED_CBC_SHA}, // SEED encryption with RSA and a SHA1 MAC
|
||||||
|
{"security.ssl3.ecdhe_ecdsa_aes_128_gcm_sha256", TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256}, // 128-bit AES-GCM encryption with ECDHE-ECDSA
|
||||||
|
{"security.ssl3.ecdhe_rsa_aes_128_gcm_sha256", TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256}, // 128-bit AES-GCM encryption with ECDHE-RSA
|
||||||
{nullptr, 0} /* end marker */
|
{nullptr, 0} /* end marker */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user