diff options
author | davidben <davidben@chromium.org> | 2015-10-30 09:01:09 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-10-30 16:01:50 +0000 |
commit | 14b1a53362ffb727e02bdf27e24e93c5f9b2d423 (patch) | |
tree | ef03cdd99d7ac614726fcddab2d43ce037d8dad2 /chrome/test/data | |
parent | f330e8a8ccdb236c8520c113983ce98bbca1256f (diff) | |
download | chromium_src-14b1a53362ffb727e02bdf27e24e93c5f9b2d423.zip chromium_src-14b1a53362ffb727e02bdf27e24e93c5f9b2d423.tar.gz chromium_src-14b1a53362ffb727e02bdf27e24e93c5f9b2d423.tar.bz2 |
Remove RC4 by default.
RC4 may still be re-enabled via the RC4Enabled administrative policy, until
sometime around September. Also control it via a field trial so we still have
an escape hatch should something catastrophic happen.
Keep the deprecated cipher suite fallback around (rename the parameter since I
got the naming convention wrong) since it's still got the IIS AES-GCM
workaround in it, and it will be used in not too long for DHE_RSA instead.
BUG=375342
TEST=Loading https://rc4.badssl.com/ fails with ERR_SSL_VERSION_OR_CIPHER_MISMATCH
Relaunching Chrome with --force-fieldtrials=RC4Ciphers/Enabled/ makes that page succeed.
Relaunching Chrome after setting the RC4Enabled polcy to true makes that page succeed.
(Note: press refresh when loading the site to make sure it's not cached.)
Review URL: https://codereview.chromium.org/1422293002
Cr-Commit-Position: refs/heads/master@{#357114}
Diffstat (limited to 'chrome/test/data')
-rw-r--r-- | chrome/test/data/policy/policy_test_cases.json | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/chrome/test/data/policy/policy_test_cases.json b/chrome/test/data/policy/policy_test_cases.json index e96914c..7c3fd77 100644 --- a/chrome/test/data/policy/policy_test_cases.json +++ b/chrome/test/data/policy/policy_test_cases.json @@ -1800,6 +1800,16 @@ "pref_mappings": [] }, + "RC4Enabled": { + "os": ["win", "linux", "mac", "chromeos"], + "test_policy": { "RC4Enabled": true }, + "pref_mappings": [ + { "pref": "ssl.rc4_enabled", + "local_state": true + } + ] + }, + "WelcomePageOnOSUpgradeEnabled": { "os": ["win"], "test_policy": { "WelcomePageOnOSUpgradeEnabled": false }, |