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

Side by Side Diff: net/cert/ct_known_logs_static-inc.h

Issue 2269633002: Add StartCom log to list of known CT Logs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix conflicts with prior WoSign log addition Created 4 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 struct CTLogInfo { 5 struct CTLogInfo {
6 // The DER-encoded SubjectPublicKeyInfo for the log. 6 // The DER-encoded SubjectPublicKeyInfo for the log.
7 const char* const log_key; 7 const char* const log_key;
8 // The length, in bytes, of |log_key|. 8 // The length, in bytes, of |log_key|.
9 const size_t log_key_length; 9 const size_t log_key_length;
10 // The user-friendly log name. 10 // The user-friendly log name.
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 "\x02\x03\x01\x00\x01", 112 "\x02\x03\x01\x00\x01",
113 294, "CNNIC CT log", "https://ctserver.cnnic.cn/", 113 294, "CNNIC CT log", "https://ctserver.cnnic.cn/",
114 "cnnic.ct.googleapis.com"}, 114 "cnnic.ct.googleapis.com"},
115 {"\x30\x59\x30\x13\x06\x07\x2a\x86\x48\xce\x3d\x02\x01\x06\x08\x2a\x86" 115 {"\x30\x59\x30\x13\x06\x07\x2a\x86\x48\xce\x3d\x02\x01\x06\x08\x2a\x86"
116 "\x48\xce\x3d\x03\x01\x07\x03\x42\x00\x04\xcc\x11\x88\x7b\x2d\x66\xcb" 116 "\x48\xce\x3d\x03\x01\x07\x03\x42\x00\x04\xcc\x11\x88\x7b\x2d\x66\xcb"
117 "\xae\x8f\x4d\x30\x66\x27\x19\x25\x22\x93\x21\x46\xb4\x2f\x01\xd3\xc6" 117 "\xae\x8f\x4d\x30\x66\x27\x19\x25\x22\x93\x21\x46\xb4\x2f\x01\xd3\xc6"
118 "\xf9\x2b\xd5\xc8\xba\x73\x9b\x06\xa2\xf0\x8a\x02\x9c\xd0\x6b\x46\x18" 118 "\xf9\x2b\xd5\xc8\xba\x73\x9b\x06\xa2\xf0\x8a\x02\x9c\xd0\x6b\x46\x18"
119 "\x30\x85\xba\xe9\x24\x8b\x0e\xd1\x5b\x70\x28\x0c\x7e\xf1\x3a\x45\x7f" 119 "\x30\x85\xba\xe9\x24\x8b\x0e\xd1\x5b\x70\x28\x0c\x7e\xf1\x3a\x45\x7f"
120 "\x5a\xf3\x82\x42\x60\x31", 120 "\x5a\xf3\x82\x42\x60\x31",
121 91, "WoSign log", "https://ctlog.wosign.com/", 121 91, "WoSign log", "https://ctlog.wosign.com/",
122 "wosign1.ct.googleapis.com"}}; 122 "wosign1.ct.googleapis.com"},
123 {"\x30\x59\x30\x13\x06\x07\x2a\x86\x48\xce\x3d\x02\x01\x06\x08\x2a\x86"
124 "\x48\xce\x3d\x03\x01\x07\x03\x42\x00\x04\x48\xf3\x59\xf3\xf6\x05\x18"
125 "\xd3\xdb\xb2\xed\x46\x7e\xcf\xc8\x11\xb5\x57\xb1\xa8\xd6\x4c\xe6\x9f"
126 "\xb7\x4a\x1a\x14\x86\x43\xa9\x48\xb0\xcb\x5a\x3f\x3c\x4a\xca\xdf\xc4"
127 "\x82\x14\x55\x9a\xf8\xf7\x8e\x40\x55\xdc\xf4\xd2\xaf\xea\x75\x74\xfb"
128 "\x4e\x7f\x60\x86\x2e\x51",
129 91, "StartCom CT log", "https://ct.startssl.com/",
130 "startcom1.ct.googleapis.com"}};
123 131
124 // Information related to previously-qualified, but now disqualified, CT 132 // Information related to previously-qualified, but now disqualified, CT
125 // logs. 133 // logs.
126 struct DisqualifiedCTLogInfo { 134 struct DisqualifiedCTLogInfo {
127 // The ID of the log (the SHA-256 hash of |log_info.log_key|. 135 // The ID of the log (the SHA-256 hash of |log_info.log_key|.
128 const char log_id[33]; 136 const char log_id[33];
129 137
130 const CTLogInfo log_info; 138 const CTLogInfo log_info;
131 139
132 // The offset from the Unix Epoch of when the log was disqualified. 140 // The offset from the Unix Epoch of when the log was disqualified.
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 }; 176 };
169 177
170 // The list is sorted. 178 // The list is sorted.
171 const char kGoogleLogIDs[][33] = { 179 const char kGoogleLogIDs[][33] = {
172 "\x68\xf6\x98\xf8\x1f\x64\x82\xbe\x3a\x8c\xee\xb9\x28\x1d\x4c\xfc\x71" 180 "\x68\xf6\x98\xf8\x1f\x64\x82\xbe\x3a\x8c\xee\xb9\x28\x1d\x4c\xfc\x71"
173 "\x51\x5d\x67\x93\xd4\x44\xd1\x0a\x67\xac\xbb\x4f\x4f\xfb\xc4", 181 "\x51\x5d\x67\x93\xd4\x44\xd1\x0a\x67\xac\xbb\x4f\x4f\xfb\xc4",
174 "\xa4\xb9\x09\x90\xb4\x18\x58\x14\x87\xbb\x13\xa2\xcc\x67\x70\x0a\x3c" 182 "\xa4\xb9\x09\x90\xb4\x18\x58\x14\x87\xbb\x13\xa2\xcc\x67\x70\x0a\x3c"
175 "\x35\x98\x04\xf9\x1b\xdf\xb8\xe3\x77\xcd\x0e\xc8\x0d\xdc\x10", 183 "\x35\x98\x04\xf9\x1b\xdf\xb8\xe3\x77\xcd\x0e\xc8\x0d\xdc\x10",
176 "\xee\x4b\xbd\xb7\x75\xce\x60\xba\xe1\x42\x69\x1f\xab\xe1\x9e\x66\xa3" 184 "\xee\x4b\xbd\xb7\x75\xce\x60\xba\xe1\x42\x69\x1f\xab\xe1\x9e\x66\xa3"
177 "\x0f\x7e\x5f\xb0\x72\xd8\x83\x00\xc4\x7b\x89\x7a\xa8\xfd\xcb"}; 185 "\x0f\x7e\x5f\xb0\x72\xd8\x83\x00\xc4\x7b\x89\x7a\xa8\xfd\xcb"};
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698