Skip to content

Commit 1aab77e

Browse files
committed
Comment out TLSv1.2 only ciphers
1 parent 812fec7 commit 1aab77e

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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)

user.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1249,10 +1249,10 @@ user_pref("security.ssl3.ecdh_ecdsa_aes_256_sha", false);
12491249
// PREF: Disable 256 bits ciphers without PFS
12501250
user_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/

0 commit comments

Comments
 (0)