| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "net/cert/ev_root_ca_metadata.h" | 5 #include "net/cert/ev_root_ca_metadata.h" |
| 6 | 6 |
| 7 #if defined(USE_NSS_CERTS) | 7 #if defined(USE_NSS_CERTS) |
| 8 #include <cert.h> | 8 #include <cert.h> |
| 9 #include <pkcs11n.h> | 9 #include <pkcs11n.h> |
| 10 #include <secerr.h> | 10 #include <secerr.h> |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 0x65, 0x22, 0xEA, 0xD0, 0x56, 0xD7, 0x44, 0xB3, 0x23, 0x71}}, | 161 0x65, 0x22, 0xEA, 0xD0, 0x56, 0xD7, 0x44, 0xB3, 0x23, 0x71}}, |
| 162 {"2.16.578.1.26.1.3.3", ""}, | 162 {"2.16.578.1.26.1.3.3", ""}, |
| 163 }, | 163 }, |
| 164 // Buypass Class 3 Root CA | 164 // Buypass Class 3 Root CA |
| 165 // https://valid.evident.ca23.ssl.buypass.no/ | 165 // https://valid.evident.ca23.ssl.buypass.no/ |
| 166 { | 166 { |
| 167 {{0xDA, 0xFA, 0xF7, 0xFA, 0x66, 0x84, 0xEC, 0x06, 0x8F, 0x14, | 167 {{0xDA, 0xFA, 0xF7, 0xFA, 0x66, 0x84, 0xEC, 0x06, 0x8F, 0x14, |
| 168 0x50, 0xBD, 0xC7, 0xC2, 0x81, 0xA5, 0xBC, 0xA9, 0x64, 0x57}}, | 168 0x50, 0xBD, 0xC7, 0xC2, 0x81, 0xA5, 0xBC, 0xA9, 0x64, 0x57}}, |
| 169 {"2.16.578.1.26.1.3.3", ""}, | 169 {"2.16.578.1.26.1.3.3", ""}, |
| 170 }, | 170 }, |
| 171 // CA 沃通根证书 | |
| 172 // https://root2evtest.wosign.com/ | |
| 173 { | |
| 174 {{0x16, 0x32, 0x47, 0x8d, 0x89, 0xf9, 0x21, 0x3a, 0x92, 0x00, | |
| 175 0x85, 0x63, 0xf5, 0xa4, 0xa7, 0xd3, 0x12, 0x40, 0x8a, 0xd6}}, | |
| 176 {"1.3.6.1.4.1.36305.2", ""}, | |
| 177 }, | |
| 178 // Certification Authority of WoSign | |
| 179 // https://root1evtest.wosign.com/ | |
| 180 { | |
| 181 {{0xb9, 0x42, 0x94, 0xbf, 0x91, 0xea, 0x8f, 0xb6, 0x4b, 0xe6, | |
| 182 0x10, 0x97, 0xc7, 0xfb, 0x00, 0x13, 0x59, 0xb6, 0x76, 0xcb}}, | |
| 183 {"1.3.6.1.4.1.36305.2", ""}, | |
| 184 }, | |
| 185 // CertPlus Class 2 Primary CA (KEYNECTIS) | 171 // CertPlus Class 2 Primary CA (KEYNECTIS) |
| 186 // https://www.keynectis.com/ | 172 // https://www.keynectis.com/ |
| 187 { | 173 { |
| 188 {{0x74, 0x20, 0x74, 0x41, 0x72, 0x9c, 0xdd, 0x92, 0xec, 0x79, | 174 {{0x74, 0x20, 0x74, 0x41, 0x72, 0x9c, 0xdd, 0x92, 0xec, 0x79, |
| 189 0x31, 0xd8, 0x23, 0x10, 0x8d, 0xc2, 0x81, 0x92, 0xe2, 0xbb}}, | 175 0x31, 0xd8, 0x23, 0x10, 0x8d, 0xc2, 0x81, 0x92, 0xe2, 0xbb}}, |
| 190 {"1.3.6.1.4.1.22234.2.5.2.3.1", ""}, | 176 {"1.3.6.1.4.1.22234.2.5.2.3.1", ""}, |
| 191 }, | 177 }, |
| 192 // Certum Trusted Network CA | 178 // Certum Trusted Network CA |
| 193 // https://juice.certum.pl/ | 179 // https://juice.certum.pl/ |
| 194 { | 180 { |
| (...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 907 ev_policy_[metadata.fingerprint].push_back(policy_der); | 893 ev_policy_[metadata.fingerprint].push_back(policy_der); |
| 908 policy_oids_.insert(policy_der); | 894 policy_oids_.insert(policy_der); |
| 909 } | 895 } |
| 910 } | 896 } |
| 911 #endif | 897 #endif |
| 912 } | 898 } |
| 913 | 899 |
| 914 EVRootCAMetadata::~EVRootCAMetadata() { } | 900 EVRootCAMetadata::~EVRootCAMetadata() { } |
| 915 | 901 |
| 916 } // namespace net | 902 } // namespace net |
| OLD | NEW |