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

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

Issue 1440643002: Certificate Transparency: Per-profile CT verification (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing iOS compilation Created 5 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
« no previous file with comments | « net/cert/ct_verifier.h ('k') | net/cert/multi_log_ct_verifier.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 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_MULTI_LOG_CT_VERIFIER_H_ 5 #ifndef NET_CERT_MULTI_LOG_CT_VERIFIER_H_
6 #define NET_CERT_MULTI_LOG_CT_VERIFIER_H_ 6 #define NET_CERT_MULTI_LOG_CT_VERIFIER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
11 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
12 #include "net/base/net_export.h" 12 #include "net/base/net_export.h"
13 #include "net/cert/ct_verifier.h" 13 #include "net/cert/ct_verifier.h"
14 #include "net/cert/signed_certificate_timestamp.h" 14 #include "net/cert/signed_certificate_timestamp.h"
15 15
16 namespace net { 16 namespace net {
17 17
18 namespace ct { 18 namespace ct {
19 struct LogEntry; 19 struct LogEntry;
20 } // namespace ct 20 } // namespace ct
21 21
22 class CTLogVerifier; 22 class CTLogVerifier;
23 23
24 // A Certificate Transparency verifier that can verify Signed Certificate 24 // A Certificate Transparency verifier that can verify Signed Certificate
25 // Timestamps from multiple logs. 25 // Timestamps from multiple logs.
26 // There should be a global instance of this class and for all known logs, 26 // It must be initialized with a list of logs by calling AddLogs.
27 // AddLog should be called with a CTLogVerifier (which is created from the
28 // log's public key).
29 class NET_EXPORT MultiLogCTVerifier : public CTVerifier { 27 class NET_EXPORT MultiLogCTVerifier : public CTVerifier {
30 public: 28 public:
31 MultiLogCTVerifier(); 29 MultiLogCTVerifier();
32 ~MultiLogCTVerifier() override; 30 ~MultiLogCTVerifier() override;
33 31
34 void AddLogs(const std::vector<scoped_refptr<CTLogVerifier>>& log_verifiers); 32 void AddLogs(
33 const std::vector<scoped_refptr<const CTLogVerifier>>& log_verifiers);
35 34
36 // CTVerifier implementation: 35 // CTVerifier implementation:
37 int Verify(X509Certificate* cert, 36 int Verify(X509Certificate* cert,
38 const std::string& stapled_ocsp_response, 37 const std::string& stapled_ocsp_response,
39 const std::string& sct_list_from_tls_extension, 38 const std::string& sct_list_from_tls_extension,
40 ct::CTVerifyResult* result, 39 ct::CTVerifyResult* result,
41 const BoundNetLog& net_log) override; 40 const BoundNetLog& net_log) override;
42 41
43 void SetObserver(Observer* observer) override; 42 void SetObserver(Observer* observer) override;
44 43
45 private: 44 private:
46 // Verify a list of SCTs from |encoded_sct_list| over |expected_entry|, 45 // Verify a list of SCTs from |encoded_sct_list| over |expected_entry|,
47 // placing the verification results in |result|. The SCTs in the list 46 // placing the verification results in |result|. The SCTs in the list
48 // come from |origin| (as will be indicated in the origin field of each SCT). 47 // come from |origin| (as will be indicated in the origin field of each SCT).
49 bool VerifySCTs(const std::string& encoded_sct_list, 48 bool VerifySCTs(const std::string& encoded_sct_list,
50 const ct::LogEntry& expected_entry, 49 const ct::LogEntry& expected_entry,
51 ct::SignedCertificateTimestamp::Origin origin, 50 ct::SignedCertificateTimestamp::Origin origin,
52 X509Certificate* cert, 51 X509Certificate* cert,
53 ct::CTVerifyResult* result); 52 ct::CTVerifyResult* result);
54 53
55 // Verifies a single, parsed SCT against all logs. 54 // Verifies a single, parsed SCT against all logs.
56 bool VerifySingleSCT(scoped_refptr<ct::SignedCertificateTimestamp> sct, 55 bool VerifySingleSCT(scoped_refptr<ct::SignedCertificateTimestamp> sct,
57 const ct::LogEntry& expected_entry, 56 const ct::LogEntry& expected_entry,
58 X509Certificate* cert, 57 X509Certificate* cert,
59 ct::CTVerifyResult* result); 58 ct::CTVerifyResult* result);
60 59
61 // Mapping from a log's ID to the verifier for this log. 60 // Mapping from a log's ID to the verifier for this log.
62 // A log's ID is the SHA-256 of the log's key, as defined in section 3.2. 61 // A log's ID is the SHA-256 of the log's key, as defined in section 3.2.
63 // of RFC6962. 62 // of RFC6962.
64 std::map<std::string, scoped_refptr<CTLogVerifier>> logs_; 63 std::map<std::string, scoped_refptr<const CTLogVerifier>> logs_;
65 64
66 Observer* observer_; 65 Observer* observer_;
67 66
68 DISALLOW_COPY_AND_ASSIGN(MultiLogCTVerifier); 67 DISALLOW_COPY_AND_ASSIGN(MultiLogCTVerifier);
69 }; 68 };
70 69
71 } // namespace net 70 } // namespace net
72 71
73 #endif // NET_CERT_MULTI_LOG_CT_VERIFIER_H_ 72 #endif // NET_CERT_MULTI_LOG_CT_VERIFIER_H_
OLDNEW
« no previous file with comments | « net/cert/ct_verifier.h ('k') | net/cert/multi_log_ct_verifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698