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.
5 #ifndef NET_TEST_CERT_TEST_UTIL_H_
6 #define NET_TEST_CERT_TEST_UTIL_H_
10 #include "base/memory/ref_counted.h"
11 #include "net/cert/x509_cert_types.h"
12 #include "net/cert/x509_certificate.h"
15 #include "base/memory/scoped_ptr.h"
18 typedef struct PK11SlotInfoStr PK11SlotInfo
;
31 class EVRootCAMetadata
;
34 // Imports a private key from file |key_filename| in |dir|. The file must
35 // contain a PKCS#8 PrivateKeyInfo in DER encoding. The key is imported to
37 scoped_ptr
<crypto::RSAPrivateKey
> ImportSensitiveKeyFromFile(
38 const base::FilePath
& dir
,
39 const std::string
& key_filename
,
42 bool ImportClientCertToSlot(const scoped_refptr
<X509Certificate
>& cert
,
45 scoped_refptr
<X509Certificate
> ImportClientCertAndKeyFromFile(
46 const base::FilePath
& dir
,
47 const std::string
& cert_filename
,
48 const std::string
& key_filename
,
52 // Imports all of the certificates in |cert_file|, a file in |certs_dir|, into a
54 CertificateList
CreateCertificateListFromFile(const base::FilePath
& certs_dir
,
55 const std::string
& cert_file
,
58 // Imports all of the certificates in |cert_file|, a file in |certs_dir|, into
59 // a new X509Certificate. The first certificate in the chain will be used for
60 // the returned cert, with any additional certificates configured as
61 // intermediate certificates.
62 scoped_refptr
<X509Certificate
> CreateCertificateChainFromFile(
63 const base::FilePath
& certs_dir
,
64 const std::string
& cert_file
,
67 // Imports a single certificate from |cert_file|.
68 // |certs_dir| represents the test certificates directory. |cert_file| is the
69 // name of the certificate file. If cert_file contains multiple certificates,
70 // the first certificate found will be returned.
71 scoped_refptr
<X509Certificate
> ImportCertFromFile(const base::FilePath
& certs_dir
,
72 const std::string
& cert_file
);
74 // ScopedTestEVPolicy causes certificates marked with |policy|, issued from a
75 // root with the given fingerprint, to be treated as EV. |policy| is expressed
76 // as a string of dotted numbers: i.e. "1.2.3.4".
77 // This should only be used in unittests as adding a CA twice causes a CHECK
79 class ScopedTestEVPolicy
{
81 ScopedTestEVPolicy(EVRootCAMetadata
* ev_root_ca_metadata
,
82 const SHA1HashValue
& fingerprint
,
84 ~ScopedTestEVPolicy();
87 SHA1HashValue fingerprint_
;
88 EVRootCAMetadata
* const ev_root_ca_metadata_
;
93 #endif // NET_TEST_CERT_TEST_UTIL_H_