| OLD | NEW |
| 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/linked_ptr.h" | 11 #include "base/memory/linked_ptr.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/memory/scoped_vector.h" | 13 #include "base/memory/scoped_vector.h" |
| 14 #include "net/base/net_export.h" | 14 #include "net/base/net_export.h" |
| 15 #include "net/cert/ct_verifier.h" | 15 #include "net/cert/ct_verifier.h" |
| 16 #include "net/cert/signed_certificate_timestamp.h" | 16 #include "net/cert/signed_certificate_timestamp.h" |
| 17 | 17 |
| 18 namespace net { | 18 namespace net { |
| 19 | 19 |
| 20 namespace ct { | 20 namespace ct { |
| 21 struct LogEntry; | 21 struct LogEntry; |
| 22 } // namespace ct | 22 } // namespace ct |
| 23 | 23 |
| 24 class CTLogVerifier; | |
| 25 | |
| 26 // A Certificate Transparency verifier that can verify Signed Certificate | 24 // A Certificate Transparency verifier that can verify Signed Certificate |
| 27 // Timestamps from multiple logs. | 25 // Timestamps from multiple logs. |
| 28 // There should be a global instance of this class and for all known logs, | 26 // There should be a global instance of this class and for all known logs, |
| 29 // AddLog should be called with a CTLogVerifier (which is created from the | 27 // AddLog should be called with a CTLogVerifier (which is created from the |
| 30 // log's public key). | 28 // log's public key). |
| 31 class NET_EXPORT MultiLogCTVerifier : public CTVerifier { | 29 class NET_EXPORT MultiLogCTVerifier : public CTVerifier { |
| 32 public: | 30 public: |
| 33 MultiLogCTVerifier(); | 31 MultiLogCTVerifier(); |
| 34 ~MultiLogCTVerifier() override; | 32 ~MultiLogCTVerifier() override; |
| 35 | 33 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 64 ct::CTVerifyResult* result); | 62 ct::CTVerifyResult* result); |
| 65 | 63 |
| 66 IDToLogMap logs_; | 64 IDToLogMap logs_; |
| 67 | 65 |
| 68 DISALLOW_COPY_AND_ASSIGN(MultiLogCTVerifier); | 66 DISALLOW_COPY_AND_ASSIGN(MultiLogCTVerifier); |
| 69 }; | 67 }; |
| 70 | 68 |
| 71 } // namespace net | 69 } // namespace net |
| 72 | 70 |
| 73 #endif // NET_CERT_MULTI_LOG_CT_VERIFIER_H_ | 71 #endif // NET_CERT_MULTI_LOG_CT_VERIFIER_H_ |
| OLD | NEW |