File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -391,7 +391,6 @@ This section tweaks the cipher suites used by Firefox. The idea is to support on
391391* Disable 3DES (effective key size is < 128) [ [ 1] ( https://en.wikipedia.org/wiki/3des#Security ) [ 2] ( http://en.citizendium.org/wiki/Meet-in-the-middle_attack ) [ 3] ( http://www-archive.mozilla.org/projects/security/pki/nss/ssl/fips-ssl-ciphersuites.html ) ]
392392* Disable ciphers with ECDH (non-ephemeral)
393393* Disable 256 bits ciphers without PFS
394- * Enable GCM ciphers (TLSv1.2 only) [ [ 1] ( https://en.wikipedia.org/wiki/Galois/Counter_Mode ) ]
395394* Enable ChaCha20 and Poly1305 (Firefox >= 47) [ [ 1] ( https://www.mozilla.org/en-US/firefox/47.0/releasenotes/ ) [ 2] ( https://tools.ietf.org/html/rfc7905 ) [ 3] ( https://bugzilla.mozilla.org/show_bug.cgi?id=917571 ) [ 4] ( https://bugzilla.mozilla.org/show_bug.cgi?id=1247860 ) [ 5] ( https://cr.yp.to/chacha.html ) ]
396395* Disable ciphers susceptible to the logjam attack [ [ 1] ( https://weakdh.org/ ) ]
397396* Disable ciphers with DSA (max 1024 bits)
Original file line number Diff line number Diff line change @@ -1249,10 +1249,10 @@ user_pref("security.ssl3.ecdh_ecdsa_aes_256_sha", false);
12491249// PREF: Disable 256 bits ciphers without PFS
12501250user_pref ( "security.ssl3.rsa_camellia_256_sha" , false ) ;
12511251
1252- // PREF: Enable GCM ciphers (TLSv1.2 only)
1252+ // PREF: Enable GCM ciphers (TLSv1.2 only) (disabled)
12531253// https://en.wikipedia.org/wiki/Galois/Counter_Mode
1254- user_pref ( "security.ssl3.ecdhe_ecdsa_aes_128_gcm_sha256" , true ) ; // 0xc02b
1255- user_pref ( "security.ssl3.ecdhe_rsa_aes_128_gcm_sha256" , true ) ; // 0xc02f
1254+ // user_pref("security.ssl3.ecdhe_ecdsa_aes_128_gcm_sha256", true); // 0xc02b
1255+ // user_pref("security.ssl3.ecdhe_rsa_aes_128_gcm_sha256", true); // 0xc02f
12561256
12571257// PREF: Enable ChaCha20 and Poly1305 (Firefox >= 47)
12581258// https://www.mozilla.org/en-US/firefox/47.0/releasenotes/
You can’t perform that action at this time.
0 commit comments