| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 "AddTrustExternalCARoot", | 118 "AddTrustExternalCARoot", |
| 119 "AddTrustPublicCARoot", | 119 "AddTrustPublicCARoot", |
| 120 "AddTrustQualifiedCARoot", | 120 "AddTrustQualifiedCARoot", |
| 121 "COMODOCertificationAuthority", | 121 "COMODOCertificationAuthority", |
| 122 "SecureCertificateServices", | 122 "SecureCertificateServices", |
| 123 "TrustedCertificateServices", | 123 "TrustedCertificateServices", |
| 124 "UTNDATACorpSGC", | 124 "UTNDATACorpSGC", |
| 125 "UTNUSERFirstClientAuthenticationandEmail", | 125 "UTNUSERFirstClientAuthenticationandEmail", |
| 126 "UTNUSERFirstHardware", | 126 "UTNUSERFirstHardware", |
| 127 "UTNUSERFirstObject", | 127 "UTNUSERFirstObject", |
| 128 "GTECyberTrustGlobalRoot" | 128 "GTECyberTrustGlobalRoot", |
| 129 "BaltimoreCyberTrustRoot" |
| 129 ] | 130 ] |
| 130 }, | 131 }, |
| 131 { | 132 { |
| 132 "name": "tor2web", | 133 "name": "tor2web", |
| 133 "static_spki_hashes": [ | 134 "static_spki_hashes": [ |
| 134 "AlphaSSL_G2", | 135 "AlphaSSL_G2", |
| 135 "Tor2web" | 136 "Tor2web" |
| 136 ] | 137 ] |
| 137 }, | 138 }, |
| 138 { | 139 { |
| (...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 652 | 653 |
| 653 // Entries that are only valid if the client supports SNI. | 654 // Entries that are only valid if the client supports SNI. |
| 654 { "name": "gmail.com", "mode": "force-https", "pins": "google", "snionly": t
rue }, | 655 { "name": "gmail.com", "mode": "force-https", "pins": "google", "snionly": t
rue }, |
| 655 { "name": "googlemail.com", "mode": "force-https", "pins": "google", "snionl
y": true }, | 656 { "name": "googlemail.com", "mode": "force-https", "pins": "google", "snionl
y": true }, |
| 656 { "name": "www.gmail.com", "mode": "force-https", "pins": "google", "snionly
": true }, | 657 { "name": "www.gmail.com", "mode": "force-https", "pins": "google", "snionly
": true }, |
| 657 { "name": "www.googlemail.com", "mode": "force-https", "pins": "google", "sn
ionly": true }, | 658 { "name": "www.googlemail.com", "mode": "force-https", "pins": "google", "sn
ionly": true }, |
| 658 { "name": "google-analytics.com", "include_subdomains": true, "pins": "googl
e", "snionly": true }, | 659 { "name": "google-analytics.com", "include_subdomains": true, "pins": "googl
e", "snionly": true }, |
| 659 { "name": "googlegroups.com", "include_subdomains": true, "pins": "google",
"snionly": true } | 660 { "name": "googlegroups.com", "include_subdomains": true, "pins": "google",
"snionly": true } |
| 660 ] | 661 ] |
| 661 } | 662 } |
| OLD | NEW |