OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 <keyhi.h> | 5 #include <keyhi.h> |
6 #include <openssl/mem.h> | 6 #include <openssl/mem.h> |
7 #include <openssl/nid.h> | 7 #include <openssl/nid.h> |
8 #include <openssl/rsa.h> | 8 #include <openssl/rsa.h> |
9 #include <pk11pub.h> | 9 #include <pk11pub.h> |
10 #include <prerror.h> | 10 #include <prerror.h> |
11 | 11 |
12 #include "base/logging.h" | 12 #include "base/logging.h" |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
14 #include "base/memory/ptr_util.h" | 14 #include "base/memory/ptr_util.h" |
15 #include "base/sequenced_task_runner.h" | 15 #include "base/sequenced_task_runner.h" |
16 #include "crypto/scoped_nss_types.h" | 16 #include "crypto/scoped_nss_types.h" |
17 #include "net/cert/x509_certificate.h" | 17 #include "net/cert/x509_certificate.h" |
18 #include "net/ssl/client_key_store.h" | 18 #include "net/ssl/client_key_store.h" |
19 #include "net/ssl/ssl_platform_key.h" | 19 #include "net/ssl/ssl_platform_key.h" |
20 #include "net/ssl/ssl_platform_key_task_runner.h" | 20 #include "net/ssl/ssl_platform_key_util.h" |
21 #include "net/ssl/ssl_private_key.h" | 21 #include "net/ssl/ssl_private_key.h" |
22 #include "net/ssl/threaded_ssl_private_key.h" | 22 #include "net/ssl/threaded_ssl_private_key.h" |
23 | 23 |
24 namespace net { | 24 namespace net { |
25 | 25 |
26 namespace { | 26 namespace { |
27 | 27 |
28 void LogPRError() { | 28 void LogPRError() { |
29 PRErrorCode err = PR_GetError(); | 29 PRErrorCode err = PR_GetError(); |
30 const char* err_name = PR_ErrorToName(err); | 30 const char* err_name = PR_ErrorToName(err); |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 return ClientKeyStore::GetInstance()->FetchClientCertPrivateKey( | 127 return ClientKeyStore::GetInstance()->FetchClientCertPrivateKey( |
128 *certificate); | 128 *certificate); |
129 } | 129 } |
130 | 130 |
131 return make_scoped_refptr(new ThreadedSSLPrivateKey( | 131 return make_scoped_refptr(new ThreadedSSLPrivateKey( |
132 base::MakeUnique<SSLPlatformKeyChromecast>(std::move(key)), | 132 base::MakeUnique<SSLPlatformKeyChromecast>(std::move(key)), |
133 GetSSLPlatformKeyTaskRunner())); | 133 GetSSLPlatformKeyTaskRunner())); |
134 } | 134 } |
135 | 135 |
136 } // namespace net | 136 } // namespace net |
OLD | NEW |