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

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

Issue 86503002: Certificate Transparency: Logging SCTs to the NetLog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Forgot one file. Created 7 years 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 | Annotate | Revision Log
« no previous file with comments | « net/cert/ct_signed_certificate_timestamp_log_param.cc ('k') | net/cert/multi_log_ct_verifier.h » ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 4
5 #ifndef NET_CERT_CT_VERIFIER_H_ 5 #ifndef NET_CERT_CT_VERIFIER_H_
6 #define NET_CERT_CT_VERIFIER_H_ 6 #define NET_CERT_CT_VERIFIER_H_
7 7
8 #include "net/base/net_export.h" 8 #include "net/base/net_export.h"
9 9
10 namespace net { 10 namespace net {
11 11
12 namespace ct { 12 namespace ct {
13 struct CTVerifyResult; 13 struct CTVerifyResult;
14 } // namespace ct 14 } // namespace ct
15 15
16 class BoundNetLog;
16 class X509Certificate; 17 class X509Certificate;
17 18
18 // Interface for verifying Signed Certificate Timestamps over a certificate. 19 // Interface for verifying Signed Certificate Timestamps over a certificate.
19 class NET_EXPORT CTVerifier { 20 class NET_EXPORT CTVerifier {
20 public: 21 public:
21 virtual ~CTVerifier() {} 22 virtual ~CTVerifier() {}
22 23
23 // Verifies either embedded SCTs or SCTs obtained via the 24 // Verifies either embedded SCTs or SCTs obtained via the
24 // signed_certificate_timestamp TLS extension or OCSP on the given |cert| 25 // signed_certificate_timestamp TLS extension or OCSP on the given |cert|
25 // |result| will be filled with these SCTs, divided into categories based on 26 // |result| will be filled with these SCTs, divided into categories based on
26 // the verification result. 27 // the verification result.
27 virtual int Verify(X509Certificate* cert, 28 virtual int Verify(X509Certificate* cert,
28 const std::string& sct_list_from_ocsp, 29 const std::string& sct_list_from_ocsp,
29 const std::string& sct_list_from_tls_extension, 30 const std::string& sct_list_from_tls_extension,
30 ct::CTVerifyResult* result) = 0; 31 ct::CTVerifyResult* result,
31 32 const BoundNetLog& net_log) = 0;
32 }; 33 };
33 34
34 } // namespace net 35 } // namespace net
35 36
36 #endif // NET_CERT_CT_VERIFIER_H_ 37 #endif // NET_CERT_CT_VERIFIER_H_
OLDNEW
« no previous file with comments | « net/cert/ct_signed_certificate_timestamp_log_param.cc ('k') | net/cert/multi_log_ct_verifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698