Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(225)

Side by Side Diff: net/cert/ct_policy_enforcer.h

Issue 1579233002: Rename CertPolicyEnforcer to CTPolicyEnforcer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/cert/cert_policy_enforcer_unittest.cc ('k') | net/cert/ct_policy_enforcer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef NET_CERT_CERT_POLICY_ENFORCER_H 4 #ifndef NET_CERT_CT_POLICY_ENFORCER_H
5 #define NET_CERT_CERT_POLICY_ENFORCER_H 5 #define NET_CERT_CT_POLICY_ENFORCER_H
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include "net/base/net_export.h" 9 #include "net/base/net_export.h"
10 #include "net/log/net_log.h" 10 #include "net/log/net_log.h"
11 11
12 namespace net { 12 namespace net {
13 13
14 namespace ct { 14 namespace ct {
15 15
16 struct CTVerifyResult; 16 struct CTVerifyResult;
17 class EVCertsWhitelist; 17 class EVCertsWhitelist;
18 18
19 } // namespace ct 19 } // namespace ct
20 20
21 class X509Certificate; 21 class X509Certificate;
22 22
23 // Class for checking that a given certificate conforms to security-related 23 // Class for checking that a given certificate conforms to security-related
24 // policies. 24 // policies.
25 class NET_EXPORT CertPolicyEnforcer { 25 class NET_EXPORT CTPolicyEnforcer {
26 public: 26 public:
27 CertPolicyEnforcer() {} 27 CTPolicyEnforcer() {}
28 virtual ~CertPolicyEnforcer() {} 28 virtual ~CTPolicyEnforcer() {}
29 29
30 // Returns true if the collection of SCTs for the given certificate 30 // Returns true if the collection of SCTs for the given certificate
31 // conforms with the CT/EV policy. Conformance details are logged to 31 // conforms with the CT/EV policy. Conformance details are logged to
32 // |net_log|. 32 // |net_log|.
33 // |cert| is the certificate for which the SCTs apply. 33 // |cert| is the certificate for which the SCTs apply.
34 // |ct_result| must contain the result of verifying any SCTs associated with 34 // |ct_result| must contain the result of verifying any SCTs associated with
35 // |cert| prior to invoking this method. 35 // |cert| prior to invoking this method.
36 virtual bool DoesConformToCTEVPolicy(X509Certificate* cert, 36 virtual bool DoesConformToCTEVPolicy(X509Certificate* cert,
37 const ct::EVCertsWhitelist* ev_whitelist, 37 const ct::EVCertsWhitelist* ev_whitelist,
38 const ct::CTVerifyResult& ct_result, 38 const ct::CTVerifyResult& ct_result,
39 const BoundNetLog& net_log); 39 const BoundNetLog& net_log);
40 }; 40 };
41 41
42 } // namespace net 42 } // namespace net
43 43
44 #endif // NET_CERT_CERT_POLICY_ENFORCER_H 44 #endif // NET_CERT_CT_POLICY_ENFORCER_H
OLDNEW
« no previous file with comments | « net/cert/cert_policy_enforcer_unittest.cc ('k') | net/cert/ct_policy_enforcer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698