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 24 matching lines...) Expand all Loading... |
35 "pinsets": [ | 35 "pinsets": [ |
36 { | 36 { |
37 "name": "test", | 37 "name": "test", |
38 "static_spki_hashes": [ | 38 "static_spki_hashes": [ |
39 "TestSPKI" | 39 "TestSPKI" |
40 ] | 40 ] |
41 }, | 41 }, |
42 { | 42 { |
43 "name": "google", | 43 "name": "google", |
44 "static_spki_hashes": [ | 44 "static_spki_hashes": [ |
45 "VeriSignClass3", | |
46 "VeriSignClass3_G3", | |
47 "Google1024", | |
48 "Google2048", | |
49 "GoogleBackup1024", | |
50 "GoogleBackup2048", | 45 "GoogleBackup2048", |
51 "GoogleG2", | 46 "GoogleG2" |
52 "EquifaxSecureCA", | |
53 "GeoTrustGlobal" | |
54 ], | |
55 "bad_static_spki_hashes": [ | |
56 "Aetna", | |
57 "Intel", | |
58 "TCTrustCenter", | |
59 "Vodafone", | |
60 "ThawteSGCCA", | |
61 "VeriSignClass3SSPIntermediateCA" | |
62 ] | 47 ] |
63 }, | 48 }, |
64 { | 49 { |
65 "name": "tor", | 50 "name": "tor", |
66 "static_spki_hashes": [ | 51 "static_spki_hashes": [ |
67 "RapidSSL", | 52 "RapidSSL", |
68 "DigiCertEVRoot", | 53 "DigiCertEVRoot", |
69 "Tor1", | 54 "Tor1", |
70 "Tor2", | 55 "Tor2", |
71 "Tor3" | 56 "Tor3" |
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
664 | 649 |
665 // Entries that are only valid if the client supports SNI. | 650 // Entries that are only valid if the client supports SNI. |
666 { "name": "gmail.com", "mode": "force-https", "pins": "google", "snionly": t
rue }, | 651 { "name": "gmail.com", "mode": "force-https", "pins": "google", "snionly": t
rue }, |
667 { "name": "googlemail.com", "mode": "force-https", "pins": "google", "snionl
y": true }, | 652 { "name": "googlemail.com", "mode": "force-https", "pins": "google", "snionl
y": true }, |
668 { "name": "www.gmail.com", "mode": "force-https", "pins": "google", "snionly
": true }, | 653 { "name": "www.gmail.com", "mode": "force-https", "pins": "google", "snionly
": true }, |
669 { "name": "www.googlemail.com", "mode": "force-https", "pins": "google", "sn
ionly": true }, | 654 { "name": "www.googlemail.com", "mode": "force-https", "pins": "google", "sn
ionly": true }, |
670 { "name": "google-analytics.com", "include_subdomains": true, "pins": "googl
e", "snionly": true }, | 655 { "name": "google-analytics.com", "include_subdomains": true, "pins": "googl
e", "snionly": true }, |
671 { "name": "googlegroups.com", "include_subdomains": true, "pins": "google",
"snionly": true } | 656 { "name": "googlegroups.com", "include_subdomains": true, "pins": "google",
"snionly": true } |
672 ] | 657 ] |
673 } | 658 } |
OLD | NEW |