| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This file contains the HSTS preloaded list in a machine readable format. | 5 // This file contains the HSTS preloaded list in a machine readable format. |
| 6 | 6 |
| 7 // The top-level element is a dictionary with two keys: "pinsets" maps details | 7 // The top-level element is a dictionary with two keys: "pinsets" maps details |
| 8 // of certificate pinning to a name and "entries" contains the HSTS details for | 8 // of certificate pinning to a name and "entries" contains the HSTS details for |
| 9 // each host. | 9 // each host. |
| 10 // | 10 // |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 "static_spki_hashes": [ | 173 "static_spki_hashes": [ |
| 174 "GeoTrustGlobal", | 174 "GeoTrustGlobal", |
| 175 "DigiCertEVRoot", | 175 "DigiCertEVRoot", |
| 176 "SpiderOak2", | 176 "SpiderOak2", |
| 177 "SpiderOak3" | 177 "SpiderOak3" |
| 178 ] | 178 ] |
| 179 } | 179 } |
| 180 ], | 180 ], |
| 181 | 181 |
| 182 "entries": [ | 182 "entries": [ |
| 183 // Dummy entry to test certificate pinning. | 183 // Dummy entries to test certificate pinning. |
| 184 { "name": "pinningtest.appspot.com", "include_subdomains": true, "pins": "te
st" }, | 184 { "name": "pinningtest.appspot.com", "include_subdomains": true, "pins": "te
st" }, |
| 185 { "name": "pinning-test.badssl.com", "include_subdomains": true, "pins": "te
st" }, |
| 185 | 186 |
| 186 // (*.)google.com, iff using SSL, must use an acceptable certificate. | 187 // (*.)google.com, iff using SSL, must use an acceptable certificate. |
| 187 { "name": "google.com", "include_subdomains": true, "pins": "google" }, | 188 { "name": "google.com", "include_subdomains": true, "pins": "google" }, |
| 188 | 189 |
| 189 // Now we force HTTPS for subtrees of google.com. | 190 // Now we force HTTPS for subtrees of google.com. |
| 190 { "name": "wallet.google.com", "include_subdomains": true, "mode": "force-ht
tps", "pins": "google" }, | 191 { "name": "wallet.google.com", "include_subdomains": true, "mode": "force-ht
tps", "pins": "google" }, |
| 191 { "name": "checkout.google.com", "include_subdomains": true, "mode": "force-
https", "pins": "google" }, | 192 { "name": "checkout.google.com", "include_subdomains": true, "mode": "force-
https", "pins": "google" }, |
| 192 { "name": "chrome.google.com", "include_subdomains": true, "mode": "force-ht
tps", "pins": "google" }, | 193 { "name": "chrome.google.com", "include_subdomains": true, "mode": "force-ht
tps", "pins": "google" }, |
| 193 { "name": "docs.google.com", "include_subdomains": true, "mode": "force-http
s", "pins": "google" }, | 194 { "name": "docs.google.com", "include_subdomains": true, "mode": "force-http
s", "pins": "google" }, |
| 194 { "name": "domains.google.com", "include_subdomains": true, "mode": "force-h
ttps", "pins": "google" }, | 195 { "name": "domains.google.com", "include_subdomains": true, "mode": "force-h
ttps", "pins": "google" }, |
| (...skipping 3925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4120 "CHROME_COM", | 4121 "CHROME_COM", |
| 4121 "GVT3_COM", | 4122 "GVT3_COM", |
| 4122 "GVT2_COM", | 4123 "GVT2_COM", |
| 4123 "GOOGLE", | 4124 "GOOGLE", |
| 4124 "GGPHT_COM", | 4125 "GGPHT_COM", |
| 4125 "BLOGSPOT_COM", | 4126 "BLOGSPOT_COM", |
| 4126 "DROPBOXSTATIC_COM", | 4127 "DROPBOXSTATIC_COM", |
| 4127 "DROPBOXUSERCONTENT_COM", | 4128 "DROPBOXUSERCONTENT_COM", |
| 4128 "WITHYOUTUBE_COM", | 4129 "WITHYOUTUBE_COM", |
| 4129 "WITHGOOGLE_COM", | 4130 "WITHGOOGLE_COM", |
| 4130 "G4W_CO" | 4131 "G4W_CO", |
| 4132 "BADSSL_COM" |
| 4131 ] | 4133 ] |
| 4132 } | 4134 } |
| OLD | NEW |