summaryrefslogtreecommitdiffstats
path: root/netwerk/base
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2020-03-28 01:06:56 +0100
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-03-28 01:06:56 +0100
commit55aa6ce7b3eca4f0afe2ac6e63dee3ce7de800a3 (patch)
treece0f64db14c8c1612727c3623ab94b69beedf6a4 /netwerk/base
parente9723a6fdbf15f7d61b5a32b0931507ee2cb772e (diff)
downloadUXP-55aa6ce7b3eca4f0afe2ac6e63dee3ce7de800a3.tar
UXP-55aa6ce7b3eca4f0afe2ac6e63dee3ce7de800a3.tar.gz
UXP-55aa6ce7b3eca4f0afe2ac6e63dee3ce7de800a3.tar.lz
UXP-55aa6ce7b3eca4f0afe2ac6e63dee3ce7de800a3.tar.xz
UXP-55aa6ce7b3eca4f0afe2ac6e63dee3ce7de800a3.zip
Issue #1280 - Part 1: Remove HPKP components.
This also removes leftover plumbing for storing preload information in SiteSecurityService since no service still uses it.
Diffstat (limited to 'netwerk/base')
-rw-r--r--netwerk/base/security-prefs.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/netwerk/base/security-prefs.js b/netwerk/base/security-prefs.js
index 702315d43..973c73123 100644
--- a/netwerk/base/security-prefs.js
+++ b/netwerk/base/security-prefs.js
@@ -120,27 +120,6 @@ pref("security.webauth.u2f_enable_usbtoken", false);
// OCSP must-staple
pref("security.ssl.enable_ocsp_must_staple", true);
-// HPKP settings
-
-// Enable pinning checks by default.
-pref("security.cert_pinning.enforcement_level", 2);
-// Do not process hpkp headers rooted by not built in roots by default.
-// This is to prevent accidental pinning from MITM devices and is used
-// for tests.
-pref("security.cert_pinning.process_headers_from_non_builtin_roots", false);
-// Impose a maximum age on HPKP headers, to avoid sites getting permanently
-// blacking themselves out by setting a bad pin. (60 days by default)
-// https://tools.ietf.org/html/rfc7469#section-4.1
-pref("security.cert_pinning.max_max_age_seconds", 5184000);
-// Controls whether or not HPKP (the HTTP Public Key Pinning header) is enabled.
-// If true, the header is processed and collected HPKP information is consulted
-// when looking for pinning information.
-// If false, the header is not processed and collected HPKP information is not
-// consulted when looking for pinning information. Preloaded pins are not
-// affected by this preference.
-// Default: false
-pref("security.cert_pinning.hpkp.enabled", false);
-
// If a request is mixed-content, send an HSTS priming request to attempt to
// see if it is available over HTTPS.
pref("security.mixed_content.send_hsts_priming", true);