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

Unified Diff: third_party/tlslite/tlslite/tlsconnection.py

Issue 495663002: OpenSSL: Disable ECDSA cipher suites on Windows XP. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: No std::hex Created 6 years, 3 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 | « third_party/tlslite/patches/save_client_hello.patch ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/tlslite/tlslite/tlsconnection.py
diff --git a/third_party/tlslite/tlslite/tlsconnection.py b/third_party/tlslite/tlslite/tlsconnection.py
index 996b7e99864f4d6ba4d4af536eca061e34bf8735..06aa0c9022d5fb51ee38cb1b2ab0c41ce8a767a0 100644
--- a/third_party/tlslite/tlslite/tlsconnection.py
+++ b/third_party/tlslite/tlslite/tlsconnection.py
@@ -1261,6 +1261,9 @@ class TLSConnection(TLSRecordLayer):
return # Handshake was resumed, we're done
else: break
(clientHello, cipherSuite) = result
+
+ # Save the ClientHello for external code to query.
+ self.clientHello = clientHello
#If not a resumption...
« no previous file with comments | « third_party/tlslite/patches/save_client_hello.patch ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698