forked from sanyaade-mobiledev/chromium.src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcert_policy_enforcer.h
50 lines (38 loc) · 1.51 KB
/
cert_policy_enforcer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NET_CERT_CERT_POLICY_ENFORCER_H
#define NET_CERT_CERT_POLICY_ENFORCER_H
#include <stddef.h>
#include "net/base/net_export.h"
#include "net/base/net_log.h"
namespace net {
namespace ct {
struct CTVerifyResult;
class EVCertsWhitelist;
} // namespace ct
class X509Certificate;
// Class for checking that a given certificate conforms to security-related
// policies.
class NET_EXPORT CertPolicyEnforcer {
public:
// Set the parameters for this policy enforcer:
// |require_ct_for_ev| indicates whether Certificate Transparency presence
// is required for EV certificates.
explicit CertPolicyEnforcer(bool require_ct_for_ev);
virtual ~CertPolicyEnforcer();
// Returns true if the collection of SCTs for the given certificate
// conforms with the CT/EV policy. Conformance details are logged to
// |net_log|.
// |cert| is the certificate for which the SCTs apply.
// |ct_result| must contain the result of verifying any SCTs associated with
// |cert| prior to invoking this method.
bool DoesConformToCTEVPolicy(X509Certificate* cert,
const ct::EVCertsWhitelist* ev_whitelist,
const ct::CTVerifyResult& ct_result,
const BoundNetLog& net_log);
private:
bool require_ct_for_ev_;
};
} // namespace net
#endif // NET_CERT_CERT_POLICY_ENFORCER_H