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

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

Issue 1100003006: Certificate Transparency: Fetching of Signed Tree Heads (DRAFT) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: BUILD.gn file fixes per review comments 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 | « net/base/net_error_list.h ('k') | no next file » | 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 <string> 8 #include <string>
9 9
10 #include "net/base/net_export.h" 10 #include "net/base/net_export.h"
11 11
12 namespace net { 12 namespace net {
13 13
14 namespace ct { 14 namespace ct {
15 struct CTVerifyResult; 15 struct CTVerifyResult;
16 struct SignedCertificateTimestamp; 16 struct SignedCertificateTimestamp;
17 } // namespace ct 17 } // namespace ct
18 18
19 class BoundNetLog; 19 class BoundNetLog;
20 class CTLogVerifier; 20 class CTLogVerifier;
21 class X509Certificate; 21 class X509Certificate;
22 22
23 // Interface for verifying Signed Certificate Timestamps over a certificate. 23 // Interface for verifying Signed Certificate Timestamps over a certificate.
24 class NET_EXPORT CTVerifier { 24 class NET_EXPORT CTVerifier {
25 public: 25 public:
26 class NET_EXPORT Observer { 26 class NET_EXPORT Observer {
27 public: 27 public:
28 virtual ~Observer() {}
28 // Called for each Signed Certificate Timestamp from a known log that vas 29 // Called for each Signed Certificate Timestamp from a known log that vas
29 // verified successfully (i.e. the signature verifies). |sct| is the 30 // verified successfully (i.e. the signature verifies). |sct| is the
30 // Signed Certificate Timestamp, |cert| is the certificate it applies to. 31 // Signed Certificate Timestamp, |cert| is the certificate it applies to.
31 // The certificate is needed to calculate the hash of the log entry, 32 // The certificate is needed to calculate the hash of the log entry,
32 // necessary for checking inclusion in the log. 33 // necessary for checking inclusion in the log.
33 virtual void OnSCTVerified(X509Certificate* cert, 34 virtual void OnSCTVerified(X509Certificate* cert,
34 const ct::SignedCertificateTimestamp* sct) = 0; 35 const ct::SignedCertificateTimestamp* sct) = 0;
35 }; 36 };
36 37
37 virtual ~CTVerifier() {} 38 virtual ~CTVerifier() {}
(...skipping 17 matching lines...) Expand all
55 // Registers |observer| to receive notifications of validated SCTs. Does not 56 // Registers |observer| to receive notifications of validated SCTs. Does not
56 // take ownership of the observer as the observer may be performing 57 // take ownership of the observer as the observer may be performing
57 // URLRequests which have to be cancelled before this object is destroyed. 58 // URLRequests which have to be cancelled before this object is destroyed.
58 // Setting |observer| to nullptr has the effect of stopping all notifications. 59 // Setting |observer| to nullptr has the effect of stopping all notifications.
59 virtual void SetObserver(Observer* observer) = 0; 60 virtual void SetObserver(Observer* observer) = 0;
60 }; 61 };
61 62
62 } // namespace net 63 } // namespace net
63 64
64 #endif // NET_CERT_CT_VERIFIER_H_ 65 #endif // NET_CERT_CT_VERIFIER_H_
OLDNEW
« no previous file with comments | « net/base/net_error_list.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698