mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-14 12:13:22 +00:00
Bug 478839 - Support South Korean SEED crypto cipher suites. r=nelson
This commit is contained in:
parent
8790e79787
commit
b98bb36896
@ -59,6 +59,7 @@ pref("security.ssl3.dhe_rsa_des_sha", false);
|
||||
pref("security.ssl3.dhe_dss_des_sha", false);
|
||||
pref("security.ssl3.rsa_null_sha", false);
|
||||
pref("security.ssl3.rsa_null_md5", false);
|
||||
pref("security.ssl3.rsa_seed_sha", true);
|
||||
|
||||
pref("security.default_personal_cert", "Ask Every Time");
|
||||
pref("security.remember_cert_checkbox_default_setting", true);
|
||||
|
@ -1061,6 +1061,7 @@ static CipherPref CipherPrefs[] = {
|
||||
{"security.ssl3.dhe_dss_des_sha", SSL_DHE_DSS_WITH_DES_CBC_SHA}, // 56-bit DES encryption with DSA, DHE, and a SHA1 MAC
|
||||
{"security.ssl3.rsa_null_sha", SSL_RSA_WITH_NULL_SHA}, // No encryption with RSA authentication and a SHA1 MAC
|
||||
{"security.ssl3.rsa_null_md5", SSL_RSA_WITH_NULL_MD5}, // No encryption with RSA authentication and an MD5 MAC
|
||||
{"security.ssl3.rsa_seed_sha", TLS_RSA_WITH_SEED_CBC_SHA}, // SEED encryption with RSA and a SHA1 MAC
|
||||
{NULL, 0} /* end marker */
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user