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

Unified Diff: net/third_party/nss/ssl/sslimpl.h

Issue 8771031: Add NSS function to retrieve TLS client cert types requested by server. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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
Index: net/third_party/nss/ssl/sslimpl.h
diff --git a/net/third_party/nss/ssl/sslimpl.h b/net/third_party/nss/ssl/sslimpl.h
index ad718ef215df53759485142c77a7c86cbfac56d9..0eec0454d1f1f2848e0be55cf9531f428daccfea 100644
--- a/net/third_party/nss/ssl/sslimpl.h
+++ b/net/third_party/nss/ssl/sslimpl.h
@@ -1107,6 +1107,10 @@ struct sslSocketStr {
unsigned int sizeCipherSpecs;
const unsigned char * preferredCipher;
+ /* TLS ClientCertificateTypes requested during HandleCertificateRequest. */
+ /* Will be NULL at all other times. */
+ SECItem* requestedCertTypes;
wtc 2011/12/02 22:31:46 This probably should be const SECItem*. Nit: put
mattm 2011/12/06 00:32:01 Done.
+
ssl3KeyPair * stepDownKeyPair; /* RSA step down keys */
/* Callbacks */

Powered by Google App Engine
This is Rietveld 408576698