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_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ | 5 #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ |
6 #define NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ | 6 #define NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 // <openssl/evp.h> | 24 // <openssl/evp.h> |
25 typedef struct evp_pkey_st EVP_PKEY; | 25 typedef struct evp_pkey_st EVP_PKEY; |
26 // <openssl/ssl.h> | 26 // <openssl/ssl.h> |
27 typedef struct ssl_st SSL; | 27 typedef struct ssl_st SSL; |
28 // <openssl/x509.h> | 28 // <openssl/x509.h> |
29 typedef struct x509_st X509; | 29 typedef struct x509_st X509; |
30 | 30 |
31 namespace net { | 31 namespace net { |
32 | 32 |
33 class CertVerifier; | 33 class CertVerifier; |
| 34 class PeerCertificateChain; |
34 class SingleRequestCertVerifier; | 35 class SingleRequestCertVerifier; |
35 class SSLCertRequestInfo; | 36 class SSLCertRequestInfo; |
36 class SSLInfo; | 37 class SSLInfo; |
37 | 38 |
38 // An SSL client socket implemented with OpenSSL. | 39 // An SSL client socket implemented with OpenSSL. |
39 class SSLClientSocketOpenSSL : public SSLClientSocket { | 40 class SSLClientSocketOpenSSL : public SSLClientSocket { |
40 public: | 41 public: |
41 // Takes ownership of the transport_socket, which may already be connected. | 42 // Takes ownership of the transport_socket, which may already be connected. |
42 // The given hostname will be compared with the name(s) in the server's | 43 // The given hostname will be compared with the name(s) in the server's |
43 // certificate during the SSL handshake. ssl_config specifies the SSL | 44 // certificate during the SSL handshake. ssl_config specifies the SSL |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 // the result to return on the *next* call to DoPayloadRead(). A value > 0 | 163 // the result to return on the *next* call to DoPayloadRead(). A value > 0 |
163 // indicates there is no pending result, otherwise 0 indicates EOF and < 0 | 164 // indicates there is no pending result, otherwise 0 indicates EOF and < 0 |
164 // indicates an error. | 165 // indicates an error. |
165 int pending_read_error_; | 166 int pending_read_error_; |
166 | 167 |
167 // Used by TransportWriteComplete() and TransportReadComplete() to signify an | 168 // Used by TransportWriteComplete() and TransportReadComplete() to signify an |
168 // error writing to the transport socket. A value of OK indicates no error. | 169 // error writing to the transport socket. A value of OK indicates no error. |
169 int transport_write_error_; | 170 int transport_write_error_; |
170 | 171 |
171 // Set when handshake finishes. | 172 // Set when handshake finishes. |
| 173 scoped_ptr<PeerCertificateChain> server_cert_chain_; |
172 scoped_refptr<X509Certificate> server_cert_; | 174 scoped_refptr<X509Certificate> server_cert_; |
173 CertVerifyResult server_cert_verify_result_; | 175 CertVerifyResult server_cert_verify_result_; |
174 bool completed_handshake_; | 176 bool completed_handshake_; |
175 | 177 |
176 // Stores client authentication information between ClientAuthHandler and | 178 // Stores client authentication information between ClientAuthHandler and |
177 // GetSSLCertRequestInfo calls. | 179 // GetSSLCertRequestInfo calls. |
178 bool client_auth_cert_needed_; | 180 bool client_auth_cert_needed_; |
179 // List of DER-encoded X.509 DistinguishedName of certificate authorities | 181 // List of DER-encoded X.509 DistinguishedName of certificate authorities |
180 // allowed by the server. | 182 // allowed by the server. |
181 std::vector<std::string> cert_authorities_; | 183 std::vector<std::string> cert_authorities_; |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 // True if channel ID extension was negotiated. | 221 // True if channel ID extension was negotiated. |
220 bool channel_id_xtn_negotiated_; | 222 bool channel_id_xtn_negotiated_; |
221 // The request handle for |server_bound_cert_service_|. | 223 // The request handle for |server_bound_cert_service_|. |
222 ServerBoundCertService::RequestHandle channel_id_request_handle_; | 224 ServerBoundCertService::RequestHandle channel_id_request_handle_; |
223 BoundNetLog net_log_; | 225 BoundNetLog net_log_; |
224 }; | 226 }; |
225 | 227 |
226 } // namespace net | 228 } // namespace net |
227 | 229 |
228 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ | 230 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ |
OLD | NEW |