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

Unified Diff: base/crypto/rsa_private_key.h

Issue 1347002: Add Mac implementations of new SymmetricKey and Encryptor classes. (Closed)
Patch Set: Responding to feedback Created 10 years, 9 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: base/crypto/rsa_private_key.h
diff --git a/base/crypto/rsa_private_key.h b/base/crypto/rsa_private_key.h
index 7f562ecf76a59b8a34f877d799bf187a8b6622ac..ae410e02abc43bf7e25e3ed72df4a5161aa123b3 100644
--- a/base/crypto/rsa_private_key.h
+++ b/base/crypto/rsa_private_key.h
@@ -174,7 +174,6 @@ class RSAPrivateKey {
HCRYPTPROV provider() { return provider_; }
HCRYPTKEY key() { return key_; }
#elif defined(OS_MACOSX)
- CSSM_CSP_HANDLE csp_handle() { return csp_handle_; }
CSSM_KEY_PTR key() { return &key_; }
#endif
@@ -199,7 +198,6 @@ private:
HCRYPTKEY key_;
#elif defined(OS_MACOSX)
CSSM_KEY key_;
- CSSM_CSP_HANDLE csp_handle_;
#endif
DISALLOW_COPY_AND_ASSIGN(RSAPrivateKey);

Powered by Google App Engine
This is Rietveld 408576698