Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Side by Side Diff: net/http/transport_security_state_static_unittest1.json

Issue 2660793002: Add transport security state generator tests. (Closed)
Patch Set: export method for tests Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // This is a HSTS preloaded list used by the unittests. For more information
6 // on the content and format see the comments in
7 // transport_security_state_static.json.
8
9 {
10 "pinsets": [
11 {
12 "name": "test1",
13 "static_spki_hashes": [
14 "TestSPKI1"
15 ],
16 "bad_static_spki_hashes": [
17 "TestSPKI2"
18 ]
19 }, {
20 "name": "test2",
21 "static_spki_hashes": [
22 "TestSPKI2"
23 ]
24 }
25 ],
26 "entries": [
27 {
28 "name": "hsts.example.com",
29 "mode": "force-https",
30 "include_subdomains": true,
31 "pins": "test1"
32 }
33 ],
34 "domain_ids": [
35 "NOT_PINNED",
36 "EXAMPLE_COM"
37 ]
38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698