| 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 "static_spki_hashes": [ | 163 "static_spki_hashes": [ |
| 164 "SymantecClass3EVG3", | 164 "SymantecClass3EVG3", |
| 165 "DigiCertECCSecureServerCA", | 165 "DigiCertECCSecureServerCA", |
| 166 "DigiCertEVRoot", | 166 "DigiCertEVRoot", |
| 167 "FacebookBackup" | 167 "FacebookBackup" |
| 168 ] | 168 ] |
| 169 }, | 169 }, |
| 170 { | 170 { |
| 171 "name": "spideroak", | 171 "name": "spideroak", |
| 172 "static_spki_hashes": [ | 172 "static_spki_hashes": [ |
| 173 "RapidSSL", | 173 "GeoTrustGlobal", |
| 174 "SpiderOak1", | 174 "DigiCertEVRoot", |
| 175 "SpiderOak2" | 175 "SpiderOak2", |
| 176 "SpiderOak3" |
| 176 ] | 177 ] |
| 177 } | 178 } |
| 178 ], | 179 ], |
| 179 | 180 |
| 180 "entries": [ | 181 "entries": [ |
| 181 // Dummy entry to test certificate pinning. | 182 // Dummy entry to test certificate pinning. |
| 182 { "name": "pinningtest.appspot.com", "include_subdomains": true, "pins": "te
st" }, | 183 { "name": "pinningtest.appspot.com", "include_subdomains": true, "pins": "te
st" }, |
| 183 | 184 |
| 184 // (*.)google.com, iff using SSL, must use an acceptable certificate. | 185 // (*.)google.com, iff using SSL, must use an acceptable certificate. |
| 185 { "name": "google.com", "include_subdomains": true, "pins": "google" }, | 186 { "name": "google.com", "include_subdomains": true, "pins": "google" }, |
| (...skipping 2269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2455 "GOOGLETAGSERVICES_COM", | 2456 "GOOGLETAGSERVICES_COM", |
| 2456 "DROPBOX_COM", | 2457 "DROPBOX_COM", |
| 2457 "YOUTUBE_NOCOOKIE_COM", | 2458 "YOUTUBE_NOCOOKIE_COM", |
| 2458 "2MDN_NET", | 2459 "2MDN_NET", |
| 2459 "FACEBOOK_COM", | 2460 "FACEBOOK_COM", |
| 2460 "SPIDEROAK_COM", | 2461 "SPIDEROAK_COM", |
| 2461 "BLOGGER_COM", | 2462 "BLOGGER_COM", |
| 2462 "CHROME_COM" | 2463 "CHROME_COM" |
| 2463 ] | 2464 ] |
| 2464 } | 2465 } |
| OLD | NEW |