OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_URL_REQUEST_FRAUDULENT_CERTIFICATE_REPORTER_H_ | 5 #ifndef NET_URL_REQUEST_FRAUDULENT_CERTIFICATE_REPORTER_H_ |
6 #define NET_URL_REQUEST_FRAUDULENT_CERTIFICATE_REPORTER_H_ | 6 #define NET_URL_REQUEST_FRAUDULENT_CERTIFICATE_REPORTER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 namespace net { | 10 namespace net { |
11 | 11 |
12 class SSLInfo; | 12 class SSLInfo; |
13 | 13 |
14 // FraudulentCertificateReporter is an interface for asynchronously | 14 // FraudulentCertificateReporter is an interface for asynchronously |
15 // reporting certificate chains that fail the certificate pinning | 15 // reporting certificate chains that fail the certificate pinning |
16 // check. | 16 // check. |
17 class FraudulentCertificateReporter { | 17 class FraudulentCertificateReporter { |
18 public: | 18 public: |
19 virtual ~FraudulentCertificateReporter() {} | 19 virtual ~FraudulentCertificateReporter() {} |
20 | 20 |
21 // Sends a report to the report collection server containing the |ssl_info| | 21 // Sends a pinning violation report to the report collection server |
22 // associated with a connection to |hostname|. | 22 // containing the |ssl_info| associated with a connection to |
23 virtual void SendReport(const std::string& hostname, | 23 // |hostname|. |
24 const SSLInfo& ssl_info) = 0; | 24 virtual void SendPinningViolationReport(const std::string& hostname, |
| 25 const SSLInfo& ssl_info) = 0; |
| 26 |
| 27 // Sends a report of an invalid certificate chain to the report |
| 28 // collection server containing the |ssl_info| associated with a |
| 29 // connection to |hostname|. |
| 30 virtual void SendInvalidChainReport(const std::string& hostname, |
| 31 const SSLInfo& ssl_info) = 0; |
25 }; | 32 }; |
26 | 33 |
27 } // namespace net | 34 } // namespace net |
28 | 35 |
29 #endif // NET_URL_REQUEST_FRAUDULENT_CERTIFICATE_REPORTER_H_ | 36 #endif // NET_URL_REQUEST_FRAUDULENT_CERTIFICATE_REPORTER_H_ |
30 | |
OLD | NEW |