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

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

Issue 1216943003: Use the CT policy enforcer for QUIC, if specified. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 5 years, 4 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 | « no previous file | net/http/http_network_session.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_CERT_POLICY_ENFORCER_H
5 #define NET_CERT_CERT_POLICY_ENFORCER_H 5 #define NET_CERT_CERT_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 CertPolicyEnforcer {
26 public: 26 public:
27 CertPolicyEnforcer() {}
28 virtual ~CertPolicyEnforcer() {}
29
27 // Returns true if the collection of SCTs for the given certificate 30 // Returns true if the collection of SCTs for the given certificate
28 // conforms with the CT/EV policy. Conformance details are logged to 31 // conforms with the CT/EV policy. Conformance details are logged to
29 // |net_log|. 32 // |net_log|.
30 // |cert| is the certificate for which the SCTs apply. 33 // |cert| is the certificate for which the SCTs apply.
31 // |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
32 // |cert| prior to invoking this method. 35 // |cert| prior to invoking this method.
33 bool DoesConformToCTEVPolicy(X509Certificate* cert, 36 virtual bool DoesConformToCTEVPolicy(X509Certificate* cert,
34 const ct::EVCertsWhitelist* ev_whitelist, 37 const ct::EVCertsWhitelist* ev_whitelist,
35 const ct::CTVerifyResult& ct_result, 38 const ct::CTVerifyResult& ct_result,
36 const BoundNetLog& net_log); 39 const BoundNetLog& net_log);
37 }; 40 };
38 41
39 } // namespace net 42 } // namespace net
40 43
41 #endif // NET_CERT_CERT_POLICY_ENFORCER_H 44 #endif // NET_CERT_CERT_POLICY_ENFORCER_H
OLDNEW
« no previous file with comments | « no previous file | net/http/http_network_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698