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

Unified Diff: third_party/tlslite/patches/client_cipher_preferences.patch

Issue 858373002: Update third_party/tlslite to 0.4.8. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Finish fixing client auth Created 5 years, 11 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/channel_id.patch ('k') | third_party/tlslite/patches/dhe_rsa.patch » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/tlslite/patches/client_cipher_preferences.patch
diff --git a/third_party/tlslite/patches/client_cipher_preferences.patch b/third_party/tlslite/patches/client_cipher_preferences.patch
deleted file mode 100644
index 971939cabeb1c0f9e437ff60bb3dddfece77d51e..0000000000000000000000000000000000000000
--- a/third_party/tlslite/patches/client_cipher_preferences.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff --git a/third_party/tlslite/tlslite/tlsconnection.py b/third_party/tlslite/tlslite/tlsconnection.py
-index b9797d2..20cd85b 100755
---- a/third_party/tlslite/tlslite/tlsconnection.py
-+++ b/third_party/tlslite/tlslite/tlsconnection.py
-@@ -1386,10 +1386,9 @@ class TLSConnection(TLSRecordLayer):
- #the only time we won't use it is if we're resuming a
- #session, in which case we use the ciphersuite from the session.
- #
-- #Given the current ciphersuite ordering, this means we prefer SRP
-- #over non-SRP.
-- for cipherSuite in cipherSuites:
-- if cipherSuite in clientHello.cipher_suites:
-+ #Use the client's preferences for now.
-+ for cipherSuite in clientHello.cipher_suites:
-+ if cipherSuite in cipherSuites:
- break
- else:
- for result in self._sendError(\
« no previous file with comments | « third_party/tlslite/patches/channel_id.patch ('k') | third_party/tlslite/patches/dhe_rsa.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698