| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 is a HSTS preloaded list used by the unittests. For more information | 5 // This is a HSTS preloaded list used by the unittests. For more information |
| 6 // on the content and format see the comments in | 6 // on the content and format see the comments in |
| 7 // transport_security_state_static.json. | 7 // transport_security_state_static.json. |
| 8 | 8 |
| 9 { | 9 { |
| 10 "pinsets": [ | 10 "pinsets": [ |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "name": "mix.badssl.com", | 51 "name": "mix.badssl.com", |
| 52 "mode": "force-https", | 52 "mode": "force-https", |
| 53 "include_subdomains": false, | 53 "include_subdomains": false, |
| 54 "pins": "test2", | 54 "pins": "test2", |
| 55 "include_subdomains_for_pinning": true, | 55 "include_subdomains_for_pinning": true, |
| 56 "expect_ct": true, | 56 "expect_ct": true, |
| 57 "expect_ct_report_uri": "https://report.example.com/ct-upload", | 57 "expect_ct_report_uri": "https://report.example.com/ct-upload", |
| 58 "expect_staple": true, | 58 "expect_staple": true, |
| 59 "include_subdomains_for_expect_staple": true, | 59 "include_subdomains_for_expect_staple": true, |
| 60 "expect_staple_report_uri": "https://report.badssl.com/staple-upload" | 60 "expect_staple_report_uri": "https://report.badssl.com/staple-upload" |
| 61 }, { |
| 62 // Keep this a simple entry in the context of TrieWriter::IsSimpleEntry(). |
| 63 "name": "simple-entry.example.com", |
| 64 "mode": "force-https", |
| 65 "include_subdomains": true |
| 61 } | 66 } |
| 62 ] | 67 ] |
| 63 } | 68 } |
| OLD | NEW |