OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SSL_SSL_INFO_H_ | 5 #ifndef NET_SSL_SSL_INFO_H_ |
6 #define NET_SSL_SSL_INFO_H_ | 6 #define NET_SSL_SSL_INFO_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "net/base/net_export.h" | 11 #include "net/base/net_export.h" |
12 #include "net/cert/cert_status_flags.h" | 12 #include "net/cert/cert_status_flags.h" |
13 #include "net/cert/ct_verify_result.h" | 13 #include "net/cert/ct_verify_result.h" |
14 #include "net/cert/ocsp_verify_result.h" | |
14 #include "net/cert/sct_status_flags.h" | 15 #include "net/cert/sct_status_flags.h" |
15 #include "net/cert/x509_cert_types.h" | 16 #include "net/cert/x509_cert_types.h" |
16 #include "net/ssl/signed_certificate_timestamp_and_status.h" | 17 #include "net/ssl/signed_certificate_timestamp_and_status.h" |
17 #include "net/ssl/ssl_config.h" | 18 #include "net/ssl/ssl_config.h" |
18 | 19 |
19 namespace net { | 20 namespace net { |
20 | 21 |
21 namespace ct { | 22 namespace ct { |
22 | 23 |
23 enum class CertPolicyCompliance; | 24 enum class CertPolicyCompliance; |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
137 | 138 |
138 // Whether the connection complied with the CT EV policy, and if not, | 139 // Whether the connection complied with the CT EV policy, and if not, |
139 // why not. Only meaningful if |ct_compliance_details_available| is | 140 // why not. Only meaningful if |ct_compliance_details_available| is |
140 // true. | 141 // true. |
141 ct::EVPolicyCompliance ct_ev_policy_compliance; | 142 ct::EVPolicyCompliance ct_ev_policy_compliance; |
142 | 143 |
143 // Whether the connection complied with the CT cert policy, and if | 144 // Whether the connection complied with the CT cert policy, and if |
144 // not, why not. Only meaningful it |ct_compliance_details_available| | 145 // not, why not. Only meaningful it |ct_compliance_details_available| |
145 // is true. | 146 // is true. |
146 ct::CertPolicyCompliance ct_cert_policy_compliance; | 147 ct::CertPolicyCompliance ct_cert_policy_compliance; |
148 | |
149 // OCSP stapling details. | |
150 OCSPVerifyResult ocsp; | |
Ryan Sleevi
2016/07/18 20:08:08
same remark re: naming
| |
147 }; | 151 }; |
148 | 152 |
149 } // namespace net | 153 } // namespace net |
150 | 154 |
151 #endif // NET_SSL_SSL_INFO_H_ | 155 #endif // NET_SSL_SSL_INFO_H_ |
OLD | NEW |