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

Side by Side Diff: net/ssl/ssl_platform_key_nss.cc

Issue 1178193002: Sign CertificateVerify messages on a background thread. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 5 months 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
OLDNEW
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698