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

Unified Diff: net/socket/ssl_client_socket_openssl.cc

Issue 10823084: Add a new GetTlsUniqueChannelBinding method to SSLSocket, and implement nss version. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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: net/socket/ssl_client_socket_openssl.cc
diff --git a/net/socket/ssl_client_socket_openssl.cc b/net/socket/ssl_client_socket_openssl.cc
index 85d0d650f42df1b99028b01f0f9597599989b252..74948f0f8077b719b0f2b250f93e40c46f5ba1d1 100644
--- a/net/socket/ssl_client_socket_openssl.cc
+++ b/net/socket/ssl_client_socket_openssl.cc
@@ -663,6 +663,13 @@ int SSLClientSocketOpenSSL::ExportKeyingMaterial(
return OK;
}
+int SSLClientSocketOpenSSL::GetTlsUniqueChannelBinding(
+ unsigned char* out,
+ unsigned int *outlen,
+ unsigned int outlen_max) {
+ return ERR_NOT_IMPLEMENTED;
+}
+
SSLClientSocket::NextProtoStatus SSLClientSocketOpenSSL::GetNextProto(
std::string* proto, std::string* server_protos) {
*proto = npn_proto_;

Powered by Google App Engine
This is Rietveld 408576698