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

Unified Diff: net/socket/ssl_client_socket_nss.cc

Issue 10387222: nss: revert encrypted and origin bound certificates support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 8 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 | « no previous file | net/third_party/nss/README.chromium » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_client_socket_nss.cc
diff --git a/net/socket/ssl_client_socket_nss.cc b/net/socket/ssl_client_socket_nss.cc
index cf15d5e13b727965de1f1ea74b04e4dcf0e348e1..ed99bbf8c33c5b74b90c384edf09424ebb0df8b7 100644
--- a/net/socket/ssl_client_socket_nss.cc
+++ b/net/socket/ssl_client_socket_nss.cc
@@ -2083,12 +2083,9 @@ SECStatus SSLClientSocketNSS::OwnAuthCertHandler(void* arg,
// static
bool SSLClientSocketNSS::DomainBoundCertNegotiated(PRFileDesc* socket) {
- PRBool xtn_negotiated = PR_FALSE;
- SECStatus rv = SSL_HandshakeNegotiatedExtension(
- socket, ssl_ob_cert_xtn, &xtn_negotiated);
- DCHECK_EQ(SECSuccess, rv);
-
- return xtn_negotiated ? true : false;
+ // TODO(wtc,mattm): this is temporary while DBC support is changed into
+ // Channel ID.
+ return false;
}
SECStatus SSLClientSocketNSS::DomainBoundClientAuthHandler(
« no previous file with comments | « no previous file | net/third_party/nss/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698