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

Side by Side Diff: remoting/protocol/ssl_hmac_channel_authenticator.cc

Issue 1376593007: SSL in EmbeddedTestServer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Typo fix. Created 5 years, 1 month 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/test/embedded_test_server/request_handler_util.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include "remoting/protocol/ssl_hmac_channel_authenticator.h" 5 #include "remoting/protocol/ssl_hmac_channel_authenticator.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
9 #include "base/callback_helpers.h" 9 #include "base/callback_helpers.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "crypto/secure_util.h" 11 #include "crypto/secure_util.h"
12 #include "net/base/host_port_pair.h" 12 #include "net/base/host_port_pair.h"
13 #include "net/base/io_buffer.h" 13 #include "net/base/io_buffer.h"
14 #include "net/base/net_errors.h" 14 #include "net/base/net_errors.h"
15 #include "net/cert/cert_status_flags.h" 15 #include "net/cert/cert_status_flags.h"
16 #include "net/cert/cert_verifier.h" 16 #include "net/cert/cert_verifier.h"
17 #include "net/cert/cert_verify_result.h" 17 #include "net/cert/cert_verify_result.h"
18 #include "net/cert/x509_certificate.h" 18 #include "net/cert/x509_certificate.h"
19 #include "net/http/transport_security_state.h" 19 #include "net/http/transport_security_state.h"
20 #include "net/socket/client_socket_handle.h" 20 #include "net/socket/client_socket_handle.h"
21 #include "net/socket/ssl_client_socket.h" 21 #include "net/socket/ssl_client_socket.h"
22 #include "net/socket/ssl_server_socket.h" 22 #include "net/socket/ssl_server_socket.h"
23 #include "net/ssl/ssl_config_service.h" 23 #include "net/ssl/ssl_config_service.h"
24 #include "net/ssl/ssl_server_config.h"
24 #include "remoting/base/rsa_key_pair.h" 25 #include "remoting/base/rsa_key_pair.h"
25 #include "remoting/protocol/auth_util.h" 26 #include "remoting/protocol/auth_util.h"
26 #include "remoting/protocol/p2p_stream_socket.h" 27 #include "remoting/protocol/p2p_stream_socket.h"
27 28
28 #if defined(OS_NACL) 29 #if defined(OS_NACL)
29 #include "net/socket/ssl_client_socket_openssl.h" 30 #include "net/socket/ssl_client_socket_openssl.h"
30 #else 31 #else
31 #include "net/socket/client_socket_factory.h" 32 #include "net/socket/client_socket_factory.h"
32 #endif 33 #endif
33 34
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 #else 213 #else
213 scoped_refptr<net::X509Certificate> cert = 214 scoped_refptr<net::X509Certificate> cert =
214 net::X509Certificate::CreateFromBytes( 215 net::X509Certificate::CreateFromBytes(
215 local_cert_.data(), local_cert_.length()); 216 local_cert_.data(), local_cert_.length());
216 if (!cert.get()) { 217 if (!cert.get()) {
217 LOG(ERROR) << "Failed to parse X509Certificate"; 218 LOG(ERROR) << "Failed to parse X509Certificate";
218 NotifyError(net::ERR_FAILED); 219 NotifyError(net::ERR_FAILED);
219 return; 220 return;
220 } 221 }
221 222
222 net::SSLConfig ssl_config; 223 net::SSLServerConfig ssl_config;
223 ssl_config.require_ecdhe = true; 224 ssl_config.require_ecdhe = true;
224 225
225 scoped_ptr<net::SSLServerSocket> server_socket = net::CreateSSLServerSocket( 226 scoped_ptr<net::SSLServerSocket> server_socket = net::CreateSSLServerSocket(
226 make_scoped_ptr(new NetStreamSocketAdapter(socket.Pass())), cert.get(), 227 make_scoped_ptr(new NetStreamSocketAdapter(socket.Pass())), cert.get(),
227 local_key_pair_->private_key(), ssl_config); 228 local_key_pair_->private_key(), ssl_config);
228 net::SSLServerSocket* raw_server_socket = server_socket.get(); 229 net::SSLServerSocket* raw_server_socket = server_socket.get();
229 socket_ = server_socket.Pass(); 230 socket_ = server_socket.Pass();
230 result = raw_server_socket->Handshake( 231 result = raw_server_socket->Handshake(
231 base::Bind(&SslHmacChannelAuthenticator::OnConnected, 232 base::Bind(&SslHmacChannelAuthenticator::OnConnected,
232 base::Unretained(this))); 233 base::Unretained(this)));
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 make_scoped_ptr(new P2PStreamSocketAdapter(socket_.Pass()))); 429 make_scoped_ptr(new P2PStreamSocketAdapter(socket_.Pass())));
429 } 430 }
430 } 431 }
431 432
432 void SslHmacChannelAuthenticator::NotifyError(int error) { 433 void SslHmacChannelAuthenticator::NotifyError(int error) {
433 base::ResetAndReturn(&done_callback_).Run(error, nullptr); 434 base::ResetAndReturn(&done_callback_).Run(error, nullptr);
434 } 435 }
435 436
436 } // namespace protocol 437 } // namespace protocol
437 } // namespace remoting 438 } // namespace remoting
OLDNEW
« no previous file with comments | « net/test/embedded_test_server/request_handler_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698