blob: 7cf73e78a45ccdc37f5a3999841b93c2ed1178aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/socket/client_socket_factory.h"
#include "build/build_config.h"
#include "net/socket/ssl_client_socket_nss.h"
#if defined(OS_WIN)
#include "net/socket/ssl_client_socket_win.h"
#endif
// This file is only used on platforms where NSS is not the system SSL
// library. When compiled, this file is the only object module that pulls
// in the dependency on NSPR and NSS. This allows us to control which
// projects depend on NSPR and NSS on those platforms.
namespace net {
SSLClientSocket* SSLClientSocketNSSFactory(
ClientSocket* transport_socket,
const std::string& hostname,
const SSLConfig& ssl_config) {
// TODO(wtc): SSLClientSocketNSS can't do SSL client authentication using
// CryptoAPI yet (http://crbug.com/37560), so we fall back on
// SSLClientSocketWin.
#if defined(OS_WIN)
if (ssl_config.client_cert)
return new SSLClientSocketWin(transport_socket, hostname, ssl_config);
#endif
return new SSLClientSocketNSS(transport_socket, hostname, ssl_config);
}
} // namespace net
|