Bug 1286694 - Part 4: Enable TLS 1.3 in Nightly draft
authorMasatoshi Kimura <VYV03354@nifty.ne.jp>
Sat, 16 Jul 2016 23:00:15 +0900
changeset 389728 f8c6b72de3a019c12ab417bea897d2e2bfaa2b02
parent 389727 734558698df8b4ed2a939e9f7c6cb98941802294
child 525839 6fb58383636fd732737e8e52ae0ee4fc77529e58
push id23500
push userVYV03354@nifty.ne.jp
push dateTue, 19 Jul 2016 22:44:05 +0000
bugs1286694
milestone50.0a1
Bug 1286694 - Part 4: Enable TLS 1.3 in Nightly MozReview-Commit-ID: HlDuBy99upZ
netwerk/base/security-prefs.js
--- a/netwerk/base/security-prefs.js
+++ b/netwerk/base/security-prefs.js
@@ -1,14 +1,18 @@
 /* This Source Code Form is subject to the terms of the Mozilla Public
  * License, v. 2.0. If a copy of the MPL was not distributed with this
  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 
 pref("security.tls.version.min", 1);
+#ifdef NIGHTLY_BUILD
+pref("security.tls.version.max", 4);
+#else
 pref("security.tls.version.max", 3);
+#endif
 pref("security.tls.version.fallback-limit", 3);
 pref("security.tls.insecure_fallback_hosts", "");
 pref("security.tls.unrestricted_rc4_fallback", false);
 
 pref("security.ssl.treat_unsafe_negotiation_as_broken", false);
 pref("security.ssl.require_safe_negotiation",  false);
 pref("security.ssl.enable_ocsp_stapling", true);
 pref("security.ssl.enable_false_start", true);