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

Unified Diff: net/ssl/ssl_platform_key_util.h

Issue 2391213002: Report curve types in ECDSA SSLPrivateKeys. (Closed)
Patch Set: rebase Created 4 years, 2 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
« no previous file with comments | « net/ssl/ssl_platform_key_task_runner.cc ('k') | net/ssl/ssl_platform_key_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ssl/ssl_platform_key_util.h
diff --git a/net/ssl/ssl_platform_key_util.h b/net/ssl/ssl_platform_key_util.h
new file mode 100644
index 0000000000000000000000000000000000000000..5fda648fba55a00b6bd1393c61d589c01019cc8d
--- /dev/null
+++ b/net/ssl/ssl_platform_key_util.h
@@ -0,0 +1,36 @@
+// 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.
+
+#ifndef NET_SSL_SSL_PLATFORM_KEY_UTIL_H_
+#define NET_SSL_SSL_PLATFORM_KEY_UTIL_H_
+
+#include <stddef.h>
+
+#include "base/memory/ref_counted.h"
+#include "net/base/net_export.h"
+#include "net/ssl/ssl_private_key.h"
+
+namespace base {
+class SingleThreadTaskRunner;
+}
+
+namespace net {
+
+class X509Certificate;
+
+// Returns a task runner to serialize all private key operations on a single
+// background thread to avoid problems with buggy smartcards. Its underlying
+// Thread is non-joinable and as such provides
+// TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN semantics.
+scoped_refptr<base::SingleThreadTaskRunner> GetSSLPlatformKeyTaskRunner();
+
+// Determines the key type and maximum signature length of |certificate|'s
+// public key.
+NET_EXPORT_PRIVATE bool GetClientCertInfo(const X509Certificate* certificate,
+ SSLPrivateKey::Type* out_type,
+ size_t* out_max_length);
+
+} // namespace net
+
+#endif // NET_SSL_SSL_PLATFORM_KEY_UTIL_H_
« no previous file with comments | « net/ssl/ssl_platform_key_task_runner.cc ('k') | net/ssl/ssl_platform_key_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698