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

Unified Diff: net/ssl/threaded_ssl_private_key.cc

Issue 1178193002: Sign CertificateVerify messages on a background thread. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rsleevi comments Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: net/ssl/threaded_ssl_private_key.cc
diff --git a/net/ssl/threaded_ssl_private_key.cc b/net/ssl/threaded_ssl_private_key.cc
new file mode 100644
index 0000000000000000000000000000000000000000..56f43c6a5bb4b8c33079ff0de7320633f1b95146
--- /dev/null
+++ b/net/ssl/threaded_ssl_private_key.cc
@@ -0,0 +1,81 @@
+// Copyright 2015 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/ssl/threaded_ssl_private_key.h"
+
+#include <string>
+
+#include "base/bind.h"
+#include "base/location.h"
+#include "base/task_runner.h"
+#include "base/task_runner_util.h"
+#include "base/thread_task_runner_handle.h"
+
+namespace net {
+
+class ThreadedSSLPrivateKey::Core
+ : public base::RefCountedThreadSafe<ThreadedSSLPrivateKey::Core> {
+ public:
+ Core(scoped_ptr<ThreadedSSLPrivateKey::Delegate> delegate)
+ : delegate_(delegate.Pass()) {}
+
+ ThreadedSSLPrivateKey::Delegate* delegate() { return delegate_.get(); }
+
+ Error SignDigest(SSLPrivateKey::Hash hash,
+ const base::StringPiece& input,
+ std::vector<uint8_t>* signature) {
+ return delegate_->SignDigest(hash, input, signature);
+ }
+
+ private:
+ friend class base::RefCountedThreadSafe<Core>;
+ ~Core() {}
+
+ scoped_ptr<ThreadedSSLPrivateKey::Delegate> delegate_;
+};
+
+ThreadedSSLPrivateKey::ThreadedSSLPrivateKey(
+ scoped_ptr<ThreadedSSLPrivateKey::Delegate> delegate,
+ const scoped_refptr<base::TaskRunner>& task_runner)
+ : core_(new Core(delegate.Pass())),
+ task_runner_(task_runner),
+ weak_factory_(this) {
+}
+
+ThreadedSSLPrivateKey::~ThreadedSSLPrivateKey() {
+}
+
+SSLPrivateKey::Type ThreadedSSLPrivateKey::GetType() {
+ return core_->delegate()->GetType();
+}
+
+bool ThreadedSSLPrivateKey::SupportsHash(SSLPrivateKey::Hash hash) {
+ return core_->delegate()->SupportsHash(hash);
+}
+
+size_t ThreadedSSLPrivateKey::GetMaxSignatureLength() {
+ return core_->delegate()->GetMaxSignatureLength();
+}
+
+void ThreadedSSLPrivateKey::SignDigest(
+ SSLPrivateKey::Hash hash,
+ const base::StringPiece& input,
+ const SSLPrivateKey::SignCallback& callback) {
+ std::vector<uint8_t>* signature = new std::vector<uint8_t>;
+ base::PostTaskAndReplyWithResult(
+ task_runner_.get(), FROM_HERE,
+ base::Bind(&ThreadedSSLPrivateKey::Core::SignDigest, core_, hash,
+ input.as_string(), base::Unretained(signature)),
+ base::Bind(&ThreadedSSLPrivateKey::DoCallback, weak_factory_.GetWeakPtr(),
+ callback, base::Owned(signature)));
+}
+
+void ThreadedSSLPrivateKey::DoCallback(
+ const SSLPrivateKey::SignCallback& callback,
+ std::vector<uint8_t>* signature,
+ Error error) {
+ callback.Run(error, *signature);
+}
+
+} // namespace net

Powered by Google App Engine
This is Rietveld 408576698