OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2015 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 FILE IS NOT MEANT TO BE COMPILED SEPARATELY. |
| 6 |
| 7 // PublicKeyWhitelist contains a SHA-256 SPKI hash and a pointer to an array |
| 8 // of SHA-256 certificate hashes that have been publicly disclosed and |
| 9 // whitelisted. |
| 10 struct PublicKeyWhitelist { |
| 11 uint8 public_key[crypto::kSHA256Length]; |
| 12 const uint8 (*whitelist)[crypto::kSHA256Length]; |
| 13 size_t whitelist_size; |
| 14 }; |
| 15 |
| 16 // CNNIC whitelisted EV certs. |
| 17 static const uint8 kWhitelistCNNICEV[][crypto::kSHA256Length] = { |
| 18 {0x00}, |
| 19 }; |
| 20 |
| 21 // CNNIC whitelisted DV certs. |
| 22 static const uint8 kWhitelistCNNIC[][crypto::kSHA256Length] = { |
| 23 {0x00}, |
| 24 }; |
| 25 |
| 26 static const PublicKeyWhitelist kWhitelistedIssuers[] = { |
| 27 // C=CN, O=China Internet Network Information Center, |
| 28 // CN=China Internet Network Information Center EV Certificates Root |
| 29 // Expires: August 31 2030. |
| 30 { |
| 31 { 0x9d, 0xd5, 0x5f, 0xc5, 0x73, 0xf5, 0x46, 0xcb, |
| 32 0x6a, 0x38, 0x31, 0xd1, 0x11, 0x2d, 0x87, 0x10, |
| 33 0xa6, 0xf4, 0xf8, 0x2d, 0xc8, 0x7f, 0x5f, 0xae, |
| 34 0x9d, 0x3a, 0x1a, 0x02, 0x8d, 0xd3, 0x6e, 0x4b }, |
| 35 kWhitelistCNNICEV, |
| 36 arraysize(kWhitelistCNNICEV), |
| 37 }, |
| 38 // C=CN, O=CNNIC, CN=CNNIC ROOT |
| 39 // Expires: April 16 2027. |
| 40 { |
| 41 { 0x1f, 0x42, 0x24, 0xce, 0xc8, 0x4f, 0xc9, 0x9c, |
| 42 0xed, 0x88, 0x1f, 0xf6, 0xfc, 0xfd, 0x3e, 0x21, |
| 43 0xf8, 0xc5, 0x19, 0xc5, 0x47, 0xaa, 0x6a, 0x5d, |
| 44 0xd3, 0xde, 0x24, 0x73, 0x02, 0xce, 0x50, 0xd1 }, |
| 45 kWhitelistCNNIC, |
| 46 arraysize(kWhitelistCNNIC), |
| 47 } |
| 48 }; |
OLD | NEW |