Skip to content

Commit

Permalink
Merge pull request #206 from DrunkenSasquatch/master
Browse files Browse the repository at this point in the history
Bump max TLS version
  • Loading branch information
pyllyukko authored Feb 17, 2017
2 parents f3f2004 + d2dfe16 commit 22c4e4c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion user.js
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,10 @@ user_pref("security.ssl.disable_session_identifiers", true);
// 1 = TLS 1.0 is the minimum required / maximum supported encryption protocol. (This is the current default for the maximum supported version.)
// 2 = TLS 1.1 is the minimum required / maximum supported encryption protocol.
user_pref("security.tls.version.min", 1);
user_pref("security.tls.version.max", 3);
user_pref("security.tls.version.max", 4);

// TLS version fallback
user_pref("security.tls.version.fallback-limit", 3);

// pinning
// https://wiki.mozilla.org/SecurityEngineering/Public_Key_Pinning#How_to_use_pinning
Expand Down

0 comments on commit 22c4e4c

Please sign in to comment.