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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 "AddTrustExternalCARoot", | 133 "AddTrustExternalCARoot", |
134 "AddTrustPublicCARoot", | 134 "AddTrustPublicCARoot", |
135 "AddTrustQualifiedCARoot", | 135 "AddTrustQualifiedCARoot", |
136 "COMODOCertificationAuthority", | 136 "COMODOCertificationAuthority", |
137 "SecureCertificateServices", | 137 "SecureCertificateServices", |
138 "TrustedCertificateServices", | 138 "TrustedCertificateServices", |
139 "UTNDATACorpSGC", | 139 "UTNDATACorpSGC", |
140 "UTNUSERFirstClientAuthenticationandEmail", | 140 "UTNUSERFirstClientAuthenticationandEmail", |
141 "UTNUSERFirstHardware", | 141 "UTNUSERFirstHardware", |
142 "UTNUSERFirstObject", | 142 "UTNUSERFirstObject", |
143 "GTECyberTrustGlobalRoot" | 143 "GTECyberTrustGlobalRoot", |
| 144 "BaltimoreCyberTrustRoot" |
144 ] | 145 ] |
145 }, | 146 }, |
146 { | 147 { |
147 "name": "tor2web", | 148 "name": "tor2web", |
148 "static_spki_hashes": [ | 149 "static_spki_hashes": [ |
149 "AlphaSSL_G2", | 150 "AlphaSSL_G2", |
150 "Tor2web" | 151 "Tor2web" |
151 ] | 152 ] |
152 }, | 153 }, |
153 { | 154 { |
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
646 | 647 |
647 // Entries that are only valid if the client supports SNI. | 648 // Entries that are only valid if the client supports SNI. |
648 { "name": "gmail.com", "mode": "force-https", "pins": "google", "snionly": t
rue }, | 649 { "name": "gmail.com", "mode": "force-https", "pins": "google", "snionly": t
rue }, |
649 { "name": "googlemail.com", "mode": "force-https", "pins": "google", "snionl
y": true }, | 650 { "name": "googlemail.com", "mode": "force-https", "pins": "google", "snionl
y": true }, |
650 { "name": "www.gmail.com", "mode": "force-https", "pins": "google", "snionly
": true }, | 651 { "name": "www.gmail.com", "mode": "force-https", "pins": "google", "snionly
": true }, |
651 { "name": "www.googlemail.com", "mode": "force-https", "pins": "google", "sn
ionly": true }, | 652 { "name": "www.googlemail.com", "mode": "force-https", "pins": "google", "sn
ionly": true }, |
652 { "name": "google-analytics.com", "include_subdomains": true, "pins": "googl
e", "snionly": true }, | 653 { "name": "google-analytics.com", "include_subdomains": true, "pins": "googl
e", "snionly": true }, |
653 { "name": "googlegroups.com", "include_subdomains": true, "pins": "google",
"snionly": true } | 654 { "name": "googlegroups.com", "include_subdomains": true, "pins": "google",
"snionly": true } |
654 ] | 655 ] |
655 } | 656 } |
OLD | NEW |