| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "net/ssl/ssl_platform_key.h" |
| 6 |
| 5 #include "base/logging.h" | 7 #include "base/logging.h" |
| 6 #include "net/ssl/openssl_platform_key.h" | 8 #include "base/sequenced_task_runner.h" |
| 9 #include "net/ssl/ssl_private_key.h" |
| 7 | 10 |
| 8 namespace net { | 11 namespace net { |
| 9 | 12 |
| 10 crypto::ScopedEVP_PKEY FetchClientCertPrivateKey( | 13 scoped_ptr<SSLPrivateKey> FetchClientCertPrivateKey( |
| 11 const X509Certificate* certificate) { | 14 X509Certificate* certificate, |
| 15 scoped_refptr<base::SequencedTaskRunner> task_runner) { |
| 12 // TODO(davidben): Implement client auth for NSS. https://crbug.com/479036 | 16 // TODO(davidben): Implement client auth for NSS. https://crbug.com/479036 |
| 13 NOTIMPLEMENTED(); | 17 NOTIMPLEMENTED(); |
| 14 return nullptr; | 18 return nullptr; |
| 15 } | 19 } |
| 16 | 20 |
| 17 } // namespace net | 21 } // namespace net |
| OLD | NEW |