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

Unified Diff: net/socket/ssl_client_socket_win.h

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_win.h
diff --git a/net/socket/ssl_client_socket_win.h b/net/socket/ssl_client_socket_win.h
index f5c0a4db617583ed9e35822b359b8e21c7460ccf..db9534011d9bd94f29b0054069b3a0869537f41c 100644
--- a/net/socket/ssl_client_socket_win.h
+++ b/net/socket/ssl_client_socket_win.h
@@ -44,13 +44,18 @@ class SSLClientSocketWin : public SSLClientSocket {
const SSLClientSocketContext& context);
~SSLClientSocketWin();
- // SSLClientSocket implementation.
- virtual void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info);
+ // SSLSocket implementation.
virtual int ExportKeyingMaterial(const base::StringPiece& label,
bool has_context,
const base::StringPiece& context,
unsigned char* out,
unsigned int outlen);
+ virtual int GetTlsUniqueChannelBinding(unsigned char* out,
+ unsigned int *outlen,
+ unsigned int outlen_max) OVERRIDE;
+
+ // SSLClientSocket implementation.
+ virtual void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info);
virtual NextProtoStatus GetNextProto(std::string* proto,
std::string* server_protos);
virtual ServerBoundCertService* GetServerBoundCertService() const OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698