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

Issue 858373002: Update third_party/tlslite to 0.4.8. (Closed)

Created:
5 years, 11 months ago by davidben
Modified:
5 years, 11 months ago
Reviewers:
Ryan Sleevi
CC:
chromium-reviews, cbentzel+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Update third_party/tlslite to 0.4.8. This pulls in TLS 1.2 support from upstream. Local patches: - tls_intolerant.patch: rebased - channel_id.patch: rebased - signed_certificate_timestamps.patch: rebased - fallback_scsv.patch: rebased - status_request.patch: rebased - pycrypto.patch: dropped; fixed upstream. - client_cipher_preferences.patch: dropped; upstream came up with saner orderings. - ssl3_padding.patch: rebased - srp_cert.patch: dropped; no longer needed. - fix_test_file.patch: rebased - dhe_rsa.patch: rebased and heavily reworked to account for TLS 1.2 and server cipher order. - req_cert_types.patch: rebased and tweaked to fix upstream TLS 1.2 bugs. - ignore_write_failure.patch: rebased - intolerance_options.patch: rebased - save_client_hello.patch: rebased - certificate_request.patch: newly added; fix more upstream TLS 1.2 bugs. Other changes: - Upstream disabled SSLv3 by default. It is re-enabled in test_server.py for testing purposes. BUG=450730 Committed: https://crrev.com/72decb6a9315a7f8b3cf1780d537b349f7cb55aa Cr-Commit-Position: refs/heads/master@{#312530}

Patch Set 1 : Check in tlslite 0.4.8 as-is #

Patch Set 2 : With rebased patches #

Total comments: 3

Patch Set 3 : Finish fixing client auth #

Unified diffs Side-by-side diffs Delta from patch set Stats (+716 lines, -382 lines) Patch
M net/tools/testserver/testserver.py View 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/tlslite/LICENSE View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/tlslite/Makefile View 2 chunks +12 lines, -1 line 0 comments Download
M third_party/tlslite/PKG-INFO View 1 chunk +1 line, -1 line 0 comments Download
M third_party/tlslite/README View 6 chunks +23 lines, -13 lines 0 comments Download
M third_party/tlslite/README.chromium View 1 2 2 chunks +8 lines, -13 lines 0 comments Download
A third_party/tlslite/patches/certificate_request.patch View 1 2 1 chunk +135 lines, -0 lines 0 comments Download
D third_party/tlslite/patches/channel_id.patch View 1 14 chunks +18 lines, -18 lines 0 comments Download
D third_party/tlslite/patches/client_cipher_preferences.patch View 1 chunk +0 lines, -18 lines 0 comments Download
D third_party/tlslite/patches/dhe_rsa.patch View 1 20 chunks +186 lines, -42 lines 0 comments Download
D third_party/tlslite/patches/fallback_scsv.patch View 1 11 chunks +15 lines, -15 lines 0 comments Download
D third_party/tlslite/patches/ignore_write_failure.patch View 1 1 chunk +2 lines, -2 lines 0 comments Download
D third_party/tlslite/patches/intolerance_options.patch View 1 15 chunks +24 lines, -24 lines 0 comments Download
D third_party/tlslite/patches/pycrypto_python2.patch View 1 chunk +0 lines, -51 lines 0 comments Download
D third_party/tlslite/patches/req_cert_types.patch View 1 13 chunks +31 lines, -21 lines 0 comments Download
D third_party/tlslite/patches/save_client_hello.patch View 1 1 chunk +2 lines, -2 lines 0 comments Download
D third_party/tlslite/patches/signed_certificate_timestamps.patch View 1 12 chunks +17 lines, -17 lines 0 comments Download
D third_party/tlslite/patches/srp_cert.patch View 1 chunk +0 lines, -13 lines 0 comments Download
D third_party/tlslite/patches/ssl3_padding.patch View 1 1 chunk +3 lines, -5 lines 0 comments Download
D third_party/tlslite/patches/status_request.patch View 1 17 chunks +21 lines, -21 lines 0 comments Download
D third_party/tlslite/patches/tls_intolerant.patch View 1 9 chunks +10 lines, -10 lines 0 comments Download
M third_party/tlslite/setup.py View 1 chunk +1 line, -1 line 0 comments Download
M third_party/tlslite/tlslite/__init__.py View 1 chunk +1 line, -1 line 0 comments Download
M third_party/tlslite/tlslite/api.py View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/tlslite/tlslite/constants.py View 1 10 chunks +50 lines, -12 lines 0 comments Download
M third_party/tlslite/tlslite/handshakesettings.py View 1 5 chunks +19 lines, -16 lines 0 comments Download
M third_party/tlslite/tlslite/mathtls.py View 3 chunks +6 lines, -0 lines 0 comments Download
M third_party/tlslite/tlslite/messages.py View 1 2 9 chunks +36 lines, -8 lines 0 comments Download
M third_party/tlslite/tlslite/tlsconnection.py View 1 2 14 chunks +44 lines, -15 lines 0 comments Download
M third_party/tlslite/tlslite/tlsrecordlayer.py View 1 2 16 chunks +28 lines, -12 lines 0 comments Download
M third_party/tlslite/tlslite/utils/compat.py View 2 chunks +0 lines, -9 lines 0 comments Download
M third_party/tlslite/tlslite/utils/cryptomath.py View 4 chunks +7 lines, -4 lines 0 comments Download
M third_party/tlslite/tlslite/utils/pycrypto_rsakey.py View 2 chunks +4 lines, -6 lines 0 comments Download
M third_party/tlslite/tlslite/utils/python_rsakey.py View 1 chunk +1 line, -2 lines 0 comments Download
M third_party/tlslite/tlslite/utils/rsakey.py View 1 4 chunks +6 lines, -6 lines 0 comments Download

Messages

Total messages: 9 (2 generated)
davidben
I apologize for how painful this review will be. :-) Patch set 2 is the ...
5 years, 11 months ago (2015-01-21 23:44:12 UTC) #2
davidben
https://codereview.chromium.org/858373002/diff/20001/third_party/tlslite/tlslite/tlsconnection.py File third_party/tlslite/tlslite/tlsconnection.py (right): https://codereview.chromium.org/858373002/diff/20001/third_party/tlslite/tlslite/tlsconnection.py#newcode970 third_party/tlslite/tlslite/tlsconnection.py:970: verifyBytes = self._handshake_sha256.digest() On 2015/01/21 23:44:11, David Benjamin wrote: ...
5 years, 11 months ago (2015-01-22 00:18:35 UTC) #3
davidben
Updated to finish fixing client auth. It only signs SHA-1 right now because that's the ...
5 years, 11 months ago (2015-01-22 00:56:46 UTC) #4
Ryan Sleevi
lgtm
5 years, 11 months ago (2015-01-22 01:29:08 UTC) #5
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/858373002/40001
5 years, 11 months ago (2015-01-22 02:07:53 UTC) #7
commit-bot: I haz the power
Committed patchset #3 (id:40001)
5 years, 11 months ago (2015-01-22 02:21:58 UTC) #8
commit-bot: I haz the power
5 years, 11 months ago (2015-01-22 02:23:02 UTC) #9
Message was sent while issue was closed.
Patchset 3 (id:??) landed as
https://crrev.com/72decb6a9315a7f8b3cf1780d537b349f7cb55aa
Cr-Commit-Position: refs/heads/master@{#312530}

Powered by Google App Engine
This is Rietveld 408576698