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

Unified Diff: net/cert/cert_verify_proc_whitelist-inc.cc

Issue 1042973002: Implement the ability to whitelist certs from specific issuers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« net/cert/cert_verify_proc.cc ('K') | « net/cert/cert_verify_proc.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/cert_verify_proc_whitelist-inc.cc
diff --git a/net/cert/cert_verify_proc_whitelist-inc.cc b/net/cert/cert_verify_proc_whitelist-inc.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c1435da13ae0acad3cc34ab958b3486df0735c49
--- /dev/null
+++ b/net/cert/cert_verify_proc_whitelist-inc.cc
@@ -0,0 +1,48 @@
+// Copyright (c) 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// THIS FILE IS NOT MEANT TO BE COMPILED SEPARATELY.
+
+// PublicKeyWhitelist contains a SHA-256 SPKI hash and a pointer to an array
+// of SHA-256 certificate hashes that have been publicly disclosed and
+// whitelisted.
+struct PublicKeyWhitelist {
+ uint8 public_key[crypto::kSHA256Length];
+ const uint8 (*whitelist)[crypto::kSHA256Length];
+ size_t whitelist_size;
+};
+
+// CNNIC whitelisted EV certs.
+static const uint8 kWhitelistCNNICEV[][crypto::kSHA256Length] = {
+ {0x00},
+};
+
+// CNNIC whitelisted DV certs.
+static const uint8 kWhitelistCNNIC[][crypto::kSHA256Length] = {
+ {0x00},
+};
+
+static const PublicKeyWhitelist kWhitelistedIssuers[] = {
+ // C=CN, O=China Internet Network Information Center,
+ // CN=China Internet Network Information Center EV Certificates Root
+ // Expires: August 31 2030.
+ {
+ { 0x9d, 0xd5, 0x5f, 0xc5, 0x73, 0xf5, 0x46, 0xcb,
+ 0x6a, 0x38, 0x31, 0xd1, 0x11, 0x2d, 0x87, 0x10,
+ 0xa6, 0xf4, 0xf8, 0x2d, 0xc8, 0x7f, 0x5f, 0xae,
+ 0x9d, 0x3a, 0x1a, 0x02, 0x8d, 0xd3, 0x6e, 0x4b },
+ kWhitelistCNNICEV,
+ arraysize(kWhitelistCNNICEV),
+ },
+ // C=CN, O=CNNIC, CN=CNNIC ROOT
+ // Expires: April 16 2027.
+ {
+ { 0x1f, 0x42, 0x24, 0xce, 0xc8, 0x4f, 0xc9, 0x9c,
+ 0xed, 0x88, 0x1f, 0xf6, 0xfc, 0xfd, 0x3e, 0x21,
+ 0xf8, 0xc5, 0x19, 0xc5, 0x47, 0xaa, 0x6a, 0x5d,
+ 0xd3, 0xde, 0x24, 0x73, 0x02, 0xce, 0x50, 0xd1 },
+ kWhitelistCNNIC,
+ arraysize(kWhitelistCNNIC),
+ }
+};
« net/cert/cert_verify_proc.cc ('K') | « net/cert/cert_verify_proc.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698