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_BASE_CERT_TEST_UTIL_H_
6 #define NET_BASE_CERT_TEST_UTIL_H_
10 #include "base/memory/ref_counted.h"
11 #include "net/base/x509_cert_types.h"
12 #include "net/base/x509_certificate.h"
18 class EVRootCAMetadata
;
20 CertificateList
CreateCertificateListFromFile(const FilePath
& certs_dir
,
21 const std::string
& cert_file
,
24 // Imports a certificate file in the directory net::GetTestCertsDirectory()
26 // |certs_dir| represents the test certificates directory. |cert_file| is the
27 // name of the certificate file. If cert_file contains multiple certificates,
28 // the first certificate found will be returned.
29 scoped_refptr
<X509Certificate
> ImportCertFromFile(const FilePath
& certs_dir
,
30 const std::string
& cert_file
);
32 // ScopedTestEVPolicy causes certificates marked with |policy|, issued from a
33 // root with the given fingerprint, to be treated as EV. |policy| is expressed
34 // as a string of dotted numbers: i.e. "1.2.3.4".
35 // This should only be used in unittests as adding a CA twice causes a CHECK
37 class ScopedTestEVPolicy
{
39 ScopedTestEVPolicy(EVRootCAMetadata
* ev_root_ca_metadata
,
40 const SHA1HashValue
& fingerprint
,
42 ~ScopedTestEVPolicy();
45 SHA1HashValue fingerprint_
;
46 EVRootCAMetadata
* const ev_root_ca_metadata_
;
51 #endif // NET_BASE_CERT_TEST_UTIL_H_