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

Unified Diff: net/third_party/nss/ssl/sslsnce.c

Issue 3455019: Support for using OS-native certificates for SSL client auth.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Upload before checkin Created 10 years, 1 month 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/third_party/nss/ssl/sslplatf.c ('k') | net/third_party/nss/ssl/sslsock.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/third_party/nss/ssl/sslsnce.c
===================================================================
--- net/third_party/nss/ssl/sslsnce.c (revision 64966)
+++ net/third_party/nss/ssl/sslsnce.c (working copy)
@@ -638,6 +638,11 @@
to->u.ssl3.clAuthSeries = 0;
to->u.ssl3.clAuthValid = PR_FALSE;
+#ifdef NSS_PLATFORM_CLIENT_AUTH
+ ssl_InitPlatformAuthInfo(&to->u.ssl3.clPlatformAuthInfo);
+ to->u.ssl3.clPlatformAuthValid = PR_FALSE;
+#endif /* NSS_PLATFORM_CLIENT_AUTH */
+
if (from->u.ssl3.certIndex != -1 && pcce) {
SECItem derCert;
« no previous file with comments | « net/third_party/nss/ssl/sslplatf.c ('k') | net/third_party/nss/ssl/sslsock.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698