| 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 "net/ssl/ssl_private_key.h" |
| 7 | 9 |
| 8 namespace net { | 10 namespace net { |
| 9 | 11 |
| 10 crypto::ScopedEVP_PKEY FetchClientCertPrivateKey( | 12 scoped_ptr<SSLPrivateKey> FetchClientCertPrivateKey( |
| 11 const X509Certificate* certificate) { | 13 X509Certificate* certificate, |
| 14 const scoped_refptr<base::TaskRunner>& task_runner) { |
| 12 // TODO(davidben): Implement client auth for NSS. https://crbug.com/479036 | 15 // TODO(davidben): Implement client auth for NSS. https://crbug.com/479036 |
| 13 NOTIMPLEMENTED(); | 16 NOTIMPLEMENTED(); |
| 14 return nullptr; | 17 return nullptr; |
| 15 } | 18 } |
| 16 | 19 |
| 17 } // namespace net | 20 } // namespace net |
| OLD | NEW |