blob: 2b110a6b23888c1d98967a24c8c8fee747dac313 [file] [log] [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This is a HSTS preload list for net_unittests. Use or add entries in this
// file when you need to write a test that has expectations that depend on
// static transport security state. Tests should never depend on the real
// preload list. The format of this file is identical to
// transport_security_state_static.json.
{
"pinsets": [
{
"name": "withoutRejectedPins",
"static_spki_hashes": [
"TestSPKI1",
"GoodPin1"
]
}, {
"name": "withRejectedPins",
"static_spki_hashes": [
"GoodPin1"
],
"bad_static_spki_hashes": [
"TestSPKI1"
]
}, {
"name": "withReportUri",
"static_spki_hashes": [
"GoodPin1"
],
"report_uri": "http://report-uri.preloaded.test/pkp"
}
],
"entries": [
{ "name": "no-rejected-pins-pkp.preloaded.test", "pins": "withoutRejectedPins" },
{ "name": "with-report-uri-pkp.preloaded.test", "pins": "withReportUri" },
{ "name": "hsts-hpkp-preloaded.test", "pins": "withoutRejectedPins" },
{ "name": "www.example.org", "pins": "withoutRejectedPins" },
{ "name": "test.example.org", "pins": "withoutRejectedPins" },
{ "name": "mail.example.org", "pins": "withoutRejectedPins" },
{ "name": "mail.example.com", "pins": "withoutRejectedPins" },
{ "name": "example.test", "pins": "withoutRejectedPins" }
]
}