Home | History | Annotate | Download | only in cert
      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
      3 // found in the LICENSE file.
      4 
      5 #include "net/cert/ev_root_ca_metadata.h"
      6 
      7 #if defined(USE_NSS) || defined(OS_IOS)
      8 #include <cert.h>
      9 #include <pkcs11n.h>
     10 #include <secerr.h>
     11 #include <secoid.h>
     12 #elif defined(OS_WIN)
     13 #include <stdlib.h>
     14 #endif
     15 
     16 #include "base/lazy_instance.h"
     17 #include "base/logging.h"
     18 #if defined(USE_NSS) || defined(OS_IOS)
     19 #include "crypto/nss_util.h"
     20 #endif
     21 
     22 namespace net {
     23 
     24 // Raw metadata.
     25 struct EVMetadata {
     26   // kMaxOIDsPerCA is the number of OIDs that we can support per root CA. At
     27   // least one CA has different EV policies for businuss vs government
     28   // entities and, in the case of cross-signing, we might need to list another
     29   // CA's policy OID under the cross-signing root.
     30   static const size_t kMaxOIDsPerCA = 2;
     31   // This is the maximum length of an OID string (including the trailing NUL).
     32   static const size_t kMaxOIDLength = 32;
     33 
     34   // The SHA-1 fingerprint of the root CA certificate, used as a unique
     35   // identifier for a root CA certificate.
     36   SHA1HashValue fingerprint;
     37 
     38   // The EV policy OIDs of the root CA.
     39   const char policy_oids[kMaxOIDsPerCA][kMaxOIDLength];
     40 };
     41 
     42 static const EVMetadata ev_root_ca_metadata[] = {
     43   // AC Camerfirma S.A. Chambers of Commerce Root - 2008
     44   // https://www.camerfirma.com
     45   { { { 0x78, 0x6a, 0x74, 0xac, 0x76, 0xab, 0x14, 0x7f, 0x9c, 0x6a,
     46         0x30, 0x50, 0xba, 0x9e, 0xa8, 0x7e, 0xfe, 0x9a, 0xce, 0x3c } },
     47     { // AC Camerfirma uses the last two arcs to track how the private key is
     48       // managed - the effective verification policy is the same.
     49       "1.3.6.1.4.1.17326.10.14.2.1.2",
     50       "1.3.6.1.4.1.17326.10.14.2.2.2", },
     51   },
     52   // AC Camerfirma S.A. Global Chambersign Root - 2008
     53   // https://server2.camerfirma.com:8082
     54   { { { 0x4a, 0xbd, 0xee, 0xec, 0x95, 0x0d, 0x35, 0x9c, 0x89, 0xae,
     55         0xc7, 0x52, 0xa1, 0x2c, 0x5b, 0x29, 0xf6, 0xd6, 0xaa, 0x0c } },
     56     { // AC Camerfirma uses the last two arcs to track how the private key is
     57       // managed - the effective verification policy is the same.
     58       "1.3.6.1.4.1.17326.10.8.12.1.2",
     59       "1.3.6.1.4.1.17326.10.8.12.2.2", },
     60   },
     61   // AddTrust External CA Root
     62   // https://addtrustexternalcaroot-ev.comodoca.com
     63   { { { 0x02, 0xfa, 0xf3, 0xe2, 0x91, 0x43, 0x54, 0x68, 0x60, 0x78,
     64         0x57, 0x69, 0x4d, 0xf5, 0xe4, 0x5b, 0x68, 0x85, 0x18, 0x68 } },
     65     {
     66       "1.3.6.1.4.1.6449.1.2.1.5.1",
     67       // This is the Network Solutions EV OID. However, this root
     68       // cross-certifies NetSol and so we need it here too.
     69       "1.3.6.1.4.1.782.1.2.1.8.1",
     70     },
     71   },
     72   // AffirmTrust Commercial
     73   // https://commercial.affirmtrust.com/
     74   { { { 0xf9, 0xb5, 0xb6, 0x32, 0x45, 0x5f, 0x9c, 0xbe, 0xec, 0x57,
     75         0x5f, 0x80, 0xdc, 0xe9, 0x6e, 0x2c, 0xc7, 0xb2, 0x78, 0xb7 } },
     76     {"1.3.6.1.4.1.34697.2.1", ""},
     77   },
     78   // AffirmTrust Networking
     79   // https://networking.affirmtrust.com:4431
     80   { { { 0x29, 0x36, 0x21, 0x02, 0x8b, 0x20, 0xed, 0x02, 0xf5, 0x66,
     81         0xc5, 0x32, 0xd1, 0xd6, 0xed, 0x90, 0x9f, 0x45, 0x00, 0x2f } },
     82     {"1.3.6.1.4.1.34697.2.2", ""},
     83   },
     84   // AffirmTrust Premium
     85   // https://premium.affirmtrust.com:4432/
     86   { { { 0xd8, 0xa6, 0x33, 0x2c, 0xe0, 0x03, 0x6f, 0xb1, 0x85, 0xf6,
     87         0x63, 0x4f, 0x7d, 0x6a, 0x06, 0x65, 0x26, 0x32, 0x28, 0x27 } },
     88     {"1.3.6.1.4.1.34697.2.3", ""},
     89   },
     90   // AffirmTrust Premium ECC
     91   // https://premiumecc.affirmtrust.com:4433/
     92   { { { 0xb8, 0x23, 0x6b, 0x00, 0x2f, 0x1d, 0x16, 0x86, 0x53, 0x01,
     93         0x55, 0x6c, 0x11, 0xa4, 0x37, 0xca, 0xeb, 0xff, 0xc3, 0xbb } },
     94     {"1.3.6.1.4.1.34697.2.4", ""},
     95   },
     96   // CertPlus Class 2 Primary CA (KEYNECTIS)
     97   // https://www.keynectis.com/
     98   { { { 0x74, 0x20, 0x74, 0x41, 0x72, 0x9c, 0xdd, 0x92, 0xec, 0x79,
     99         0x31, 0xd8, 0x23, 0x10, 0x8d, 0xc2, 0x81, 0x92, 0xe2, 0xbb } },
    100     {"1.3.6.1.4.1.22234.2.5.2.3.1", ""},
    101   },
    102   // Certum Trusted Network CA
    103   // https://juice.certum.pl/
    104   { { { 0x07, 0xe0, 0x32, 0xe0, 0x20, 0xb7, 0x2c, 0x3f, 0x19, 0x2f,
    105         0x06, 0x28, 0xa2, 0x59, 0x3a, 0x19, 0xa7, 0x0f, 0x06, 0x9e } },
    106     {"1.2.616.1.113527.2.5.1.1", ""},
    107   },
    108   // COMODO Certification Authority
    109   // https://secure.comodo.com/
    110   { { { 0x66, 0x31, 0xbf, 0x9e, 0xf7, 0x4f, 0x9e, 0xb6, 0xc9, 0xd5,
    111         0xa6, 0x0c, 0xba, 0x6a, 0xbe, 0xd1, 0xf7, 0xbd, 0xef, 0x7b } },
    112     {"1.3.6.1.4.1.6449.1.2.1.5.1", ""},
    113   },
    114   // COMODO Certification Authority (reissued certificate with NotBefore of Jan
    115   // 1 00:00:00 2011 GMT)
    116   // https://secure.comodo.com/
    117   { { { 0xee, 0x86, 0x93, 0x87, 0xff, 0xfd, 0x83, 0x49, 0xab, 0x5a,
    118         0xd1, 0x43, 0x22, 0x58, 0x87, 0x89, 0xa4, 0x57, 0xb0, 0x12 } },
    119     {"1.3.6.1.4.1.6449.1.2.1.5.1", ""},
    120   },
    121   // COMODO ECC Certification Authority
    122   // https://comodoecccertificationauthority-ev.comodoca.com/
    123   { { { 0x9f, 0x74, 0x4e, 0x9f, 0x2b, 0x4d, 0xba, 0xec, 0x0f, 0x31,
    124         0x2c, 0x50, 0xb6, 0x56, 0x3b, 0x8e, 0x2d, 0x93, 0xc3, 0x11 } },
    125     {"1.3.6.1.4.1.6449.1.2.1.5.1", ""},
    126   },
    127   // Cybertrust Global Root
    128   // https://evup.cybertrust.ne.jp/ctj-ev-upgrader/evseal.gif
    129   { { { 0x5f, 0x43, 0xe5, 0xb1, 0xbf, 0xf8, 0x78, 0x8c, 0xac, 0x1c,
    130         0xc7, 0xca, 0x4a, 0x9a, 0xc6, 0x22, 0x2b, 0xcc, 0x34, 0xc6 } },
    131     {"1.3.6.1.4.1.6334.1.100.1", ""},
    132   },
    133   // DigiCert High Assurance EV Root CA
    134   // https://www.digicert.com
    135   { { { 0x5f, 0xb7, 0xee, 0x06, 0x33, 0xe2, 0x59, 0xdb, 0xad, 0x0c,
    136         0x4c, 0x9a, 0xe6, 0xd3, 0x8f, 0x1a, 0x61, 0xc7, 0xdc, 0x25 } },
    137     {"2.16.840.1.114412.2.1", ""},
    138   },
    139   // D-TRUST Root Class 3 CA 2 EV 2009
    140   // https://certdemo-ev-valid.ssl.d-trust.net/
    141   { { { 0x96, 0xc9, 0x1b, 0x0b, 0x95, 0xb4, 0x10, 0x98, 0x42, 0xfa,
    142         0xd0, 0xd8, 0x22, 0x79, 0xfe, 0x60, 0xfa, 0xb9, 0x16, 0x83 } },
    143     {"1.3.6.1.4.1.4788.2.202.1", ""},
    144   },
    145   // Entrust.net Secure Server Certification Authority
    146   // https://www.entrust.net/
    147   { { { 0x99, 0xa6, 0x9b, 0xe6, 0x1a, 0xfe, 0x88, 0x6b, 0x4d, 0x2b,
    148         0x82, 0x00, 0x7c, 0xb8, 0x54, 0xfc, 0x31, 0x7e, 0x15, 0x39 } },
    149     {"2.16.840.1.114028.10.1.2", ""},
    150   },
    151   // Entrust Root Certification Authority
    152   // https://www.entrust.net/
    153   { { { 0xb3, 0x1e, 0xb1, 0xb7, 0x40, 0xe3, 0x6c, 0x84, 0x02, 0xda,
    154         0xdc, 0x37, 0xd4, 0x4d, 0xf5, 0xd4, 0x67, 0x49, 0x52, 0xf9 } },
    155     {"2.16.840.1.114028.10.1.2", ""},
    156   },
    157   // Equifax Secure Certificate Authority (GeoTrust)
    158   // https://www.geotrust.com/
    159   { { { 0xd2, 0x32, 0x09, 0xad, 0x23, 0xd3, 0x14, 0x23, 0x21, 0x74,
    160         0xe4, 0x0d, 0x7f, 0x9d, 0x62, 0x13, 0x97, 0x86, 0x63, 0x3a } },
    161     {"1.3.6.1.4.1.14370.1.6", ""},
    162   },
    163   // GeoTrust Primary Certification Authority
    164   // https://www.geotrust.com/
    165   { { { 0x32, 0x3c, 0x11, 0x8e, 0x1b, 0xf7, 0xb8, 0xb6, 0x52, 0x54,
    166         0xe2, 0xe2, 0x10, 0x0d, 0xd6, 0x02, 0x90, 0x37, 0xf0, 0x96 } },
    167     {"1.3.6.1.4.1.14370.1.6", ""},
    168   },
    169   // GeoTrust Primary Certification Authority - G2
    170   { { { 0x8d, 0x17, 0x84, 0xd5, 0x37, 0xf3, 0x03, 0x7d, 0xec, 0x70,
    171         0xfe, 0x57, 0x8b, 0x51, 0x9a, 0x99, 0xe6, 0x10, 0xd7, 0xb0 } },
    172     {"1.3.6.1.4.1.14370.1.6", ""},
    173   },
    174   // GeoTrust Primary Certification Authority - G3
    175   { { { 0x03, 0x9e, 0xed, 0xb8, 0x0b, 0xe7, 0xa0, 0x3c, 0x69, 0x53,
    176         0x89, 0x3b, 0x20, 0xd2, 0xd9, 0x32, 0x3a, 0x4c, 0x2a, 0xfd } },
    177     {"1.3.6.1.4.1.14370.1.6", ""},
    178   },
    179   // GlobalSign Root CA - R2
    180   // https://www.globalsign.com/
    181   { { { 0x75, 0xe0, 0xab, 0xb6, 0x13, 0x85, 0x12, 0x27, 0x1c, 0x04,
    182         0xf8, 0x5f, 0xdd, 0xde, 0x38, 0xe4, 0xb7, 0x24, 0x2e, 0xfe } },
    183     {"1.3.6.1.4.1.4146.1.1", ""},
    184   },
    185   // GlobalSign Root CA
    186   { { { 0xb1, 0xbc, 0x96, 0x8b, 0xd4, 0xf4, 0x9d, 0x62, 0x2a, 0xa8,
    187         0x9a, 0x81, 0xf2, 0x15, 0x01, 0x52, 0xa4, 0x1d, 0x82, 0x9c } },
    188     {"1.3.6.1.4.1.4146.1.1", ""},
    189   },
    190   // GlobalSign Root CA - R3
    191   // https://2029.globalsign.com/
    192   { { { 0xd6, 0x9b, 0x56, 0x11, 0x48, 0xf0, 0x1c, 0x77, 0xc5, 0x45,
    193         0x78, 0xc1, 0x09, 0x26, 0xdf, 0x5b, 0x85, 0x69, 0x76, 0xad } },
    194     {"1.3.6.1.4.1.4146.1.1", ""},
    195   },
    196   // Go Daddy Class 2 Certification Authority
    197   // https://www.godaddy.com/
    198   { { { 0x27, 0x96, 0xba, 0xe6, 0x3f, 0x18, 0x01, 0xe2, 0x77, 0x26,
    199         0x1b, 0xa0, 0xd7, 0x77, 0x70, 0x02, 0x8f, 0x20, 0xee, 0xe4 } },
    200     {"2.16.840.1.114413.1.7.23.3", ""},
    201   },
    202   // Go Daddy Root Certificate Authority - G2
    203   // https://valid.gdig2.catest.godaddy.com/
    204   { { { 0x47, 0xbe, 0xab, 0xc9, 0x22, 0xea, 0xe8, 0x0e, 0x78, 0x78,
    205         0x34, 0x62, 0xa7, 0x9f, 0x45, 0xc2, 0x54, 0xfd, 0xe6, 0x8b } },
    206     {"2.16.840.1.114413.1.7.23.3", ""},
    207   },
    208   // GTE CyberTrust Global Root
    209   // https://www.cybertrust.ne.jp/
    210   { { { 0x97, 0x81, 0x79, 0x50, 0xd8, 0x1c, 0x96, 0x70, 0xcc, 0x34,
    211         0xd8, 0x09, 0xcf, 0x79, 0x44, 0x31, 0x36, 0x7e, 0xf4, 0x74 } },
    212     {"1.3.6.1.4.1.6334.1.100.1", ""},
    213   },
    214   // Izenpe.com - SHA256 root
    215   // The first OID is for businesses and the second for government entities.
    216   // These are the test sites, respectively:
    217   // https://servicios.izenpe.com
    218   // https://servicios1.izenpe.com
    219   { { { 0x2f, 0x78, 0x3d, 0x25, 0x52, 0x18, 0xa7, 0x4a, 0x65, 0x39,
    220         0x71, 0xb5, 0x2c, 0xa2, 0x9c, 0x45, 0x15, 0x6f, 0xe9, 0x19} },
    221     {"1.3.6.1.4.1.14777.6.1.1", "1.3.6.1.4.1.14777.6.1.2"},
    222   },
    223   // Izenpe.com - SHA1 root
    224   // Windows XP finds this, SHA1, root instead. The policy OIDs are the same as
    225   // for the SHA256 root, above.
    226   { { { 0x30, 0x77, 0x9e, 0x93, 0x15, 0x02, 0x2e, 0x94, 0x85, 0x6a,
    227         0x3f, 0xf8, 0xbc, 0xf8, 0x15, 0xb0, 0x82, 0xf9, 0xae, 0xfd} },
    228     {"1.3.6.1.4.1.14777.6.1.1", "1.3.6.1.4.1.14777.6.1.2"},
    229   },
    230   //  Network Solutions Certificate Authority
    231   //  https://www.networksolutions.com/website-packages/index.jsp
    232   { { { 0x74, 0xf8, 0xa3, 0xc3, 0xef, 0xe7, 0xb3, 0x90, 0x06, 0x4b,
    233         0x83, 0x90, 0x3c, 0x21, 0x64, 0x60, 0x20, 0xe5, 0xdf, 0xce } },
    234     {"1.3.6.1.4.1.782.1.2.1.8.1", ""},
    235   },
    236   //  Network Solutions Certificate Authority (reissued certificate with
    237   //  NotBefore of Jan  1 00:00:00 2011 GMT).
    238   //  https://www.networksolutions.com/website-packages/index.jsp
    239   { { { 0x71, 0x89, 0x9a, 0x67, 0xbf, 0x33, 0xaf, 0x31, 0xbe, 0xfd,
    240         0xc0, 0x71, 0xf8, 0xf7, 0x33, 0xb1, 0x83, 0x85, 0x63, 0x32 } },
    241     {"1.3.6.1.4.1.782.1.2.1.8.1", ""},
    242   },
    243   // QuoVadis Root CA 2
    244   // https://www.quovadis.bm/
    245   { { { 0xca, 0x3a, 0xfb, 0xcf, 0x12, 0x40, 0x36, 0x4b, 0x44, 0xb2,
    246         0x16, 0x20, 0x88, 0x80, 0x48, 0x39, 0x19, 0x93, 0x7c, 0xf7 } },
    247     {"1.3.6.1.4.1.8024.0.2.100.1.2", ""},
    248   },
    249   // SecureTrust CA, SecureTrust Corporation
    250   // https://www.securetrust.com
    251   // https://www.trustwave.com/
    252   { { { 0x87, 0x82, 0xc6, 0xc3, 0x04, 0x35, 0x3b, 0xcf, 0xd2, 0x96,
    253         0x92, 0xd2, 0x59, 0x3e, 0x7d, 0x44, 0xd9, 0x34, 0xff, 0x11 } },
    254     {"2.16.840.1.114404.1.1.2.4.1", ""},
    255   },
    256   // Secure Global CA, SecureTrust Corporation
    257   { { { 0x3a, 0x44, 0x73, 0x5a, 0xe5, 0x81, 0x90, 0x1f, 0x24, 0x86,
    258         0x61, 0x46, 0x1e, 0x3b, 0x9c, 0xc4, 0x5f, 0xf5, 0x3a, 0x1b } },
    259     {"2.16.840.1.114404.1.1.2.4.1", ""},
    260   },
    261   // Security Communication RootCA1
    262   // https://www.secomtrust.net/contact/form.html
    263   { { { 0x36, 0xb1, 0x2b, 0x49, 0xf9, 0x81, 0x9e, 0xd7, 0x4c, 0x9e,
    264         0xbc, 0x38, 0x0f, 0xc6, 0x56, 0x8f, 0x5d, 0xac, 0xb2, 0xf7 } },
    265     {"1.2.392.200091.100.721.1", ""},
    266   },
    267   // Security Communication EV RootCA1
    268   // https://www.secomtrust.net/contact/form.html
    269   { { { 0xfe, 0xb8, 0xc4, 0x32, 0xdc, 0xf9, 0x76, 0x9a, 0xce, 0xae,
    270         0x3d, 0xd8, 0x90, 0x8f, 0xfd, 0x28, 0x86, 0x65, 0x64, 0x7d } },
    271     {"1.2.392.200091.100.721.1", ""},
    272   },
    273   // StartCom Certification Authority
    274   // https://www.startssl.com/
    275   { { { 0x3e, 0x2b, 0xf7, 0xf2, 0x03, 0x1b, 0x96, 0xf3, 0x8c, 0xe6,
    276         0xc4, 0xd8, 0xa8, 0x5d, 0x3e, 0x2d, 0x58, 0x47, 0x6a, 0x0f } },
    277     {"1.3.6.1.4.1.23223.1.1.1", ""},
    278   },
    279   // Starfield Class 2 Certification Authority
    280   // https://www.starfieldtech.com/
    281   { { { 0xad, 0x7e, 0x1c, 0x28, 0xb0, 0x64, 0xef, 0x8f, 0x60, 0x03,
    282         0x40, 0x20, 0x14, 0xc3, 0xd0, 0xe3, 0x37, 0x0e, 0xb5, 0x8a } },
    283     {"2.16.840.1.114414.1.7.23.3", ""},
    284   },
    285   // Starfield Root Certificate Authority - G2
    286   // https://valid.sfig2.catest.starfieldtech.com/
    287   { { { 0xb5, 0x1c, 0x06, 0x7c, 0xee, 0x2b, 0x0c, 0x3d, 0xf8, 0x55,
    288         0xab, 0x2d, 0x92, 0xf4, 0xfe, 0x39, 0xd4, 0xe7, 0x0f, 0x0e } },
    289     {"2.16.840.1.114414.1.7.23.3", ""},
    290   },
    291   // Starfield Services Root Certificate Authority - G2
    292   // https://valid.sfsg2.catest.starfieldtech.com/
    293   { { { 0x92, 0x5a, 0x8f, 0x8d, 0x2c, 0x6d, 0x04, 0xe0, 0x66, 0x5f,
    294         0x59, 0x6a, 0xff, 0x22, 0xd8, 0x63, 0xe8, 0x25, 0x6f, 0x3f } },
    295     {"2.16.840.1.114414.1.7.24.3", ""},
    296   },
    297   // SwissSign Gold CA - G2
    298   // https://testevg2.swisssign.net/
    299   { { { 0xd8, 0xc5, 0x38, 0x8a, 0xb7, 0x30, 0x1b, 0x1b, 0x6e, 0xd4,
    300         0x7a, 0xe6, 0x45, 0x25, 0x3a, 0x6f, 0x9f, 0x1a, 0x27, 0x61 } },
    301     {"2.16.756.1.89.1.2.1.1", ""},
    302   },
    303   // Thawte Premium Server CA
    304   // https://www.thawte.com/
    305   { { { 0x62, 0x7f, 0x8d, 0x78, 0x27, 0x65, 0x63, 0x99, 0xd2, 0x7d,
    306         0x7f, 0x90, 0x44, 0xc9, 0xfe, 0xb3, 0xf3, 0x3e, 0xfa, 0x9a } },
    307     {"2.16.840.1.113733.1.7.48.1", ""},
    308   },
    309   // thawte Primary Root CA
    310   // https://www.thawte.com/
    311   { { { 0x91, 0xc6, 0xd6, 0xee, 0x3e, 0x8a, 0xc8, 0x63, 0x84, 0xe5,
    312         0x48, 0xc2, 0x99, 0x29, 0x5c, 0x75, 0x6c, 0x81, 0x7b, 0x81 } },
    313     {"2.16.840.1.113733.1.7.48.1", ""},
    314   },
    315   // thawte Primary Root CA - G2
    316   { { { 0xaa, 0xdb, 0xbc, 0x22, 0x23, 0x8f, 0xc4, 0x01, 0xa1, 0x27,
    317         0xbb, 0x38, 0xdd, 0xf4, 0x1d, 0xdb, 0x08, 0x9e, 0xf0, 0x12 } },
    318     {"2.16.840.1.113733.1.7.48.1", ""},
    319   },
    320   // thawte Primary Root CA - G3
    321   { { { 0xf1, 0x8b, 0x53, 0x8d, 0x1b, 0xe9, 0x03, 0xb6, 0xa6, 0xf0,
    322         0x56, 0x43, 0x5b, 0x17, 0x15, 0x89, 0xca, 0xf3, 0x6b, 0xf2 } },
    323     {"2.16.840.1.113733.1.7.48.1", ""},
    324   },
    325   // TWCA Root Certification Authority
    326   // https://evssldemo.twca.com.tw/index.html
    327   { { { 0xcf, 0x9e, 0x87, 0x6d, 0xd3, 0xeb, 0xfc, 0x42, 0x26, 0x97,
    328         0xa3, 0xb5, 0xa3, 0x7a, 0xa0, 0x76, 0xa9, 0x06, 0x23, 0x48 } },
    329     {"1.3.6.1.4.1.40869.1.1.22.3", ""},
    330   },
    331   // T-TeleSec GlobalRoot Class 3
    332   // http://www.telesec.de/ / https://root-class3.test.telesec.de/
    333   { { { 0x55, 0xa6, 0x72, 0x3e, 0xcb, 0xf2, 0xec, 0xcd, 0xc3, 0x23,
    334         0x74, 0x70, 0x19, 0x9d, 0x2a, 0xbe, 0x11, 0xe3, 0x81, 0xd1 } },
    335     {"1.3.6.1.4.1.7879.13.24.1", "" },
    336   },
    337   // UTN - DATACorp SGC
    338   { { { 0x58, 0x11, 0x9f, 0x0e, 0x12, 0x82, 0x87, 0xea, 0x50, 0xfd,
    339         0xd9, 0x87, 0x45, 0x6f, 0x4f, 0x78, 0xdc, 0xfa, 0xd6, 0xd4 } },
    340     {"1.3.6.1.4.1.6449.1.2.1.5.1", ""},
    341   },
    342   // UTN-USERFirst-Hardware
    343   { { { 0x04, 0x83, 0xed, 0x33, 0x99, 0xac, 0x36, 0x08, 0x05, 0x87,
    344         0x22, 0xed, 0xbc, 0x5e, 0x46, 0x00, 0xe3, 0xbe, 0xf9, 0xd7 } },
    345     {
    346       "1.3.6.1.4.1.6449.1.2.1.5.1",
    347       // This is the Network Solutions EV OID. However, this root
    348       // cross-certifies NetSol and so we need it here too.
    349       "1.3.6.1.4.1.782.1.2.1.8.1",
    350     },
    351   },
    352   // ValiCert Class 2 Policy Validation Authority
    353   { { { 0x31, 0x7a, 0x2a, 0xd0, 0x7f, 0x2b, 0x33, 0x5e, 0xf5, 0xa1,
    354         0xc3, 0x4e, 0x4b, 0x57, 0xe8, 0xb7, 0xd8, 0xf1, 0xfc, 0xa6 } },
    355     {"2.16.840.1.114413.1.7.23.3", "2.16.840.1.114414.1.7.23.3"},
    356   },
    357   // VeriSign Class 3 Public Primary Certification Authority
    358   // https://www.verisign.com/
    359   { { { 0x74, 0x2c, 0x31, 0x92, 0xe6, 0x07, 0xe4, 0x24, 0xeb, 0x45,
    360         0x49, 0x54, 0x2b, 0xe1, 0xbb, 0xc5, 0x3e, 0x61, 0x74, 0xe2 } },
    361     {"2.16.840.1.113733.1.7.23.6", ""},
    362   },
    363   // VeriSign Class 3 Public Primary Certification Authority - G4
    364   { { { 0x22, 0xD5, 0xD8, 0xDF, 0x8F, 0x02, 0x31, 0xD1, 0x8D, 0xF7,
    365         0x9D, 0xB7, 0xCF, 0x8A, 0x2D, 0x64, 0xC9, 0x3F, 0x6C, 0x3A } },
    366     {"2.16.840.1.113733.1.7.23.6", ""},
    367   },
    368   // VeriSign Class 3 Public Primary Certification Authority - G5
    369   // https://www.verisign.com/
    370   { { { 0x4e, 0xb6, 0xd5, 0x78, 0x49, 0x9b, 0x1c, 0xcf, 0x5f, 0x58,
    371         0x1e, 0xad, 0x56, 0xbe, 0x3d, 0x9b, 0x67, 0x44, 0xa5, 0xe5 } },
    372     {"2.16.840.1.113733.1.7.23.6", ""},
    373   },
    374   // VeriSign Universal Root Certification Authority
    375   { { { 0x36, 0x79, 0xca, 0x35, 0x66, 0x87, 0x72, 0x30, 0x4d, 0x30,
    376         0xa5, 0xfb, 0x87, 0x3b, 0x0f, 0xa7, 0x7b, 0xb7, 0x0d, 0x54 } },
    377     {"2.16.840.1.113733.1.7.23.6", ""},
    378   },
    379   // Wells Fargo WellsSecure Public Root Certificate Authority
    380   // https://nerys.wellsfargo.com/test.html
    381   { { { 0xe7, 0xb4, 0xf6, 0x9d, 0x61, 0xec, 0x90, 0x69, 0xdb, 0x7e,
    382         0x90, 0xa7, 0x40, 0x1a, 0x3c, 0xf4, 0x7d, 0x4f, 0xe8, 0xee } },
    383     {"2.16.840.1.114171.500.9", ""},
    384   },
    385   // XRamp Global Certification Authority
    386   { { { 0xb8, 0x01, 0x86, 0xd1, 0xeb, 0x9c, 0x86, 0xa5, 0x41, 0x04,
    387         0xcf, 0x30, 0x54, 0xf3, 0x4c, 0x52, 0xb7, 0xe5, 0x58, 0xc6 } },
    388     {"2.16.840.1.114404.1.1.2.4.1", ""},
    389   }
    390 };
    391 
    392 static base::LazyInstance<EVRootCAMetadata>::Leaky
    393     g_ev_root_ca_metadata = LAZY_INSTANCE_INITIALIZER;
    394 
    395 // static
    396 EVRootCAMetadata* EVRootCAMetadata::GetInstance() {
    397   return g_ev_root_ca_metadata.Pointer();
    398 }
    399 
    400 #if defined(USE_NSS) || defined(OS_IOS)
    401 bool EVRootCAMetadata::IsEVPolicyOID(PolicyOID policy_oid) const {
    402   return policy_oids_.find(policy_oid) != policy_oids_.end();
    403 }
    404 
    405 bool EVRootCAMetadata::HasEVPolicyOID(
    406     const SHA1HashValue& fingerprint,
    407     PolicyOID policy_oid) const {
    408   PolicyOIDMap::const_iterator iter = ev_policy_.find(fingerprint);
    409   if (iter == ev_policy_.end())
    410     return false;
    411   for (std::vector<PolicyOID>::const_iterator
    412        j = iter->second.begin(); j != iter->second.end(); ++j) {
    413     if (*j == policy_oid)
    414       return true;
    415   }
    416   return false;
    417 }
    418 
    419 bool EVRootCAMetadata::AddEVCA(const SHA1HashValue& fingerprint,
    420                                const char* policy) {
    421   if (ev_policy_.find(fingerprint) != ev_policy_.end())
    422     return false;
    423 
    424   PolicyOID oid;
    425   if (!RegisterOID(policy, &oid))
    426     return false;
    427 
    428   ev_policy_[fingerprint].push_back(oid);
    429   policy_oids_.insert(oid);
    430 
    431   return true;
    432 }
    433 
    434 bool EVRootCAMetadata::RemoveEVCA(const SHA1HashValue& fingerprint) {
    435   PolicyOIDMap::iterator it = ev_policy_.find(fingerprint);
    436   if (it == ev_policy_.end())
    437     return false;
    438   PolicyOID oid = it->second[0];
    439   ev_policy_.erase(it);
    440   policy_oids_.erase(oid);
    441   return true;
    442 }
    443 
    444 // static
    445 bool EVRootCAMetadata::RegisterOID(const char* policy,
    446                                    PolicyOID* out) {
    447   PRUint8 buf[64];
    448   SECItem oid_item;
    449   oid_item.data = buf;
    450   oid_item.len = sizeof(buf);
    451   SECStatus status = SEC_StringToOID(NULL, &oid_item, policy, 0);
    452   if (status != SECSuccess)
    453     return false;
    454 
    455   // Register the OID.
    456   SECOidData od;
    457   od.oid.len = oid_item.len;
    458   od.oid.data = oid_item.data;
    459   od.offset = SEC_OID_UNKNOWN;
    460   od.desc = policy;
    461   od.mechanism = CKM_INVALID_MECHANISM;
    462   od.supportedExtension = INVALID_CERT_EXTENSION;
    463   *out = SECOID_AddEntry(&od);
    464   return *out != SEC_OID_UNKNOWN;
    465 }
    466 
    467 #elif defined(OS_WIN)
    468 
    469 bool EVRootCAMetadata::IsEVPolicyOID(PolicyOID policy_oid) const {
    470   for (size_t i = 0; i < arraysize(ev_root_ca_metadata); i++) {
    471     for (size_t j = 0; j < arraysize(ev_root_ca_metadata[i].policy_oids); j++) {
    472       if (ev_root_ca_metadata[i].policy_oids[j][0] == '\0')
    473         break;
    474       if (strcmp(policy_oid, ev_root_ca_metadata[i].policy_oids[j]) == 0)
    475         return true;
    476     }
    477   }
    478 
    479   for (ExtraEVCAMap::const_iterator i = extra_cas_.begin();
    480        i != extra_cas_.end(); i++) {
    481     if (i->second == policy_oid)
    482       return true;
    483   }
    484 
    485   return false;
    486 }
    487 
    488 bool EVRootCAMetadata::HasEVPolicyOID(const SHA1HashValue& fingerprint,
    489                                       PolicyOID policy_oid) const {
    490   for (size_t i = 0; i < arraysize(ev_root_ca_metadata); i++) {
    491     if (!fingerprint.Equals(ev_root_ca_metadata[i].fingerprint))
    492       continue;
    493     for (size_t j = 0; j < arraysize(ev_root_ca_metadata[i].policy_oids); j++) {
    494       if (ev_root_ca_metadata[i].policy_oids[j][0] == '\0')
    495         break;
    496       if (strcmp(policy_oid, ev_root_ca_metadata[i].policy_oids[j]) == 0)
    497         return true;
    498     }
    499     return false;
    500   }
    501 
    502   ExtraEVCAMap::const_iterator it = extra_cas_.find(fingerprint);
    503   return it != extra_cas_.end() && it->second == policy_oid;
    504 }
    505 
    506 bool EVRootCAMetadata::AddEVCA(const SHA1HashValue& fingerprint,
    507                                const char* policy) {
    508   for (size_t i = 0; i < arraysize(ev_root_ca_metadata); i++) {
    509     if (fingerprint.Equals(ev_root_ca_metadata[i].fingerprint))
    510       return false;
    511   }
    512 
    513   if (extra_cas_.find(fingerprint) != extra_cas_.end())
    514     return false;
    515 
    516   extra_cas_[fingerprint] = policy;
    517   return true;
    518 }
    519 
    520 bool EVRootCAMetadata::RemoveEVCA(const SHA1HashValue& fingerprint) {
    521   ExtraEVCAMap::iterator it = extra_cas_.find(fingerprint);
    522   if (it == extra_cas_.end())
    523     return false;
    524   extra_cas_.erase(it);
    525   return true;
    526 }
    527 
    528 #else
    529 
    530 // These are just stub functions for platforms where we don't use this EV
    531 // metadata.
    532 
    533 bool EVRootCAMetadata::AddEVCA(const SHA1HashValue& fingerprint,
    534                                const char* policy) {
    535   return true;
    536 }
    537 
    538 bool EVRootCAMetadata::RemoveEVCA(const SHA1HashValue& fingerprint) {
    539   return true;
    540 }
    541 
    542 #endif
    543 
    544 EVRootCAMetadata::EVRootCAMetadata() {
    545   // Constructs the object from the raw metadata in ev_root_ca_metadata.
    546 #if defined(USE_NSS) || defined(OS_IOS)
    547   crypto::EnsureNSSInit();
    548 
    549   for (size_t i = 0; i < arraysize(ev_root_ca_metadata); i++) {
    550     const EVMetadata& metadata = ev_root_ca_metadata[i];
    551     for (size_t j = 0; j < arraysize(metadata.policy_oids); j++) {
    552       if (metadata.policy_oids[j][0] == '\0')
    553         break;
    554       const char* policy_oid = metadata.policy_oids[j];
    555 
    556       PolicyOID policy;
    557       if (!RegisterOID(policy_oid, &policy)) {
    558         LOG(ERROR) << "Failed to register OID: " << policy_oid;
    559         continue;
    560       }
    561 
    562       ev_policy_[metadata.fingerprint].push_back(policy);
    563       policy_oids_.insert(policy);
    564     }
    565   }
    566 #endif
    567 }
    568 
    569 EVRootCAMetadata::~EVRootCAMetadata() { }
    570 
    571 }  // namespace net
    572