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

Unified Diff: crypto/scoped_nss_types.h

Issue 8296014: Use NSS to generate Origin-Bound Certs on Win and Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review changes Created 9 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 | « no previous file | net/base/net_error_list.h » ('j') | net/base/net_error_list.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: crypto/scoped_nss_types.h
diff --git a/crypto/scoped_nss_types.h b/crypto/scoped_nss_types.h
index 3e84cb0e48e7e72c635792b2cf250d51d925a8b2..d8d78b0592d3838810520807b7850c443f7c1502 100644
--- a/crypto/scoped_nss_types.h
+++ b/crypto/scoped_nss_types.h
@@ -6,6 +6,7 @@
#define CRYPTO_SCOPED_NSS_TYPES_H_
#pragma once
+#include <keyhi.h>
#include <nss.h>
#include <pk11pub.h>
@@ -39,6 +40,12 @@ typedef scoped_ptr_malloc<
typedef scoped_ptr_malloc<
PK11SymKey, NSSDestroyer<PK11SymKey, PK11_FreeSymKey> > ScopedPK11SymKey;
typedef scoped_ptr_malloc<
+ SECKEYPublicKey, NSSDestroyer<SECKEYPublicKey, SECKEY_DestroyPublicKey> >
+ ScopedSECKEYPublicKey;
+typedef scoped_ptr_malloc<
+ SECKEYPrivateKey, NSSDestroyer<SECKEYPrivateKey, SECKEY_DestroyPrivateKey> >
+ ScopedSECKEYPrivateKey;
+typedef scoped_ptr_malloc<
SECAlgorithmID, NSSDestroyer1<SECAlgorithmID,
SECOID_DestroyAlgorithmID,
PR_TRUE> > ScopedSECAlgorithmID;
« no previous file with comments | « no previous file | net/base/net_error_list.h » ('j') | net/base/net_error_list.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698