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

Unified Diff: net/ssl/ssl_platform_key_win.h

Issue 2865883002: Unit-test CAPI and CNG SSLPrivateKey implementations. (Closed)
Patch Set: rebase Created 3 years, 7 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/BUILD.gn ('k') | net/ssl/ssl_platform_key_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ssl/ssl_platform_key_win.h
diff --git a/net/ssl/ssl_platform_key_win.h b/net/ssl/ssl_platform_key_win.h
new file mode 100644
index 0000000000000000000000000000000000000000..a5f6455d8635fa48286d60a7f9efd281cf51ebd6
--- /dev/null
+++ b/net/ssl/ssl_platform_key_win.h
@@ -0,0 +1,38 @@
+// Copyright 2017 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_WIN_H_
+#define NET_SSL_SSL_PLATFORM_KEY_WIN_H_
+
+#include <windows.h>
+
+// Must be after windows.h.
+#include <NCrypt.h>
+
+#include "base/memory/ref_counted.h"
+#include "crypto/wincrypt_shim.h"
+#include "net/base/net_export.h"
+
+namespace net {
+
+class SSLPrivateKey;
+class X509Certificate;
+
+// Returns an SSLPrivateKey backed by |prov| and |key_spec|, which must
+// correspond to |certificate|'s public key. Takes ownership of |prov|.
+NET_EXPORT_PRIVATE scoped_refptr<SSLPrivateKey> WrapCAPIPrivateKey(
+ const X509Certificate* certificate,
+ HCRYPTPROV prov,
+ DWORD key_spec);
+
+// Returns an SSLPrivateKey backed by |key|, which must correspond to
+// |certificate|'s public key, or nullptr on error. Takes ownership of |key| in
+// both cases.
+NET_EXPORT_PRIVATE scoped_refptr<SSLPrivateKey> WrapCNGPrivateKey(
+ const X509Certificate* certificate,
+ NCRYPT_KEY_HANDLE key);
+
+} // namespace net
+
+#endif // NET_SSL_SSL_PLATFORM_KEY_WIN_H_
« no previous file with comments | « net/BUILD.gn ('k') | net/ssl/ssl_platform_key_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698