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

Side by Side Diff: third_party/tlslite/tests/httpsclient.py

Issue 210323002: Update tlslite to 0.4.6. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Executable bit and --similarity=80 Created 6 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/tlslite/tests/clientX509Key.pem ('k') | third_party/tlslite/tests/httpsserver.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 from __future__ import print_function
3 from tlslite import HTTPTLSConnection, HandshakeSettings
4
5 settings = HandshakeSettings()
6 settings.useExperimentalTackExtension = True
7
8 h = HTTPTLSConnection("localhost", 4443, settings=settings)
9 h.request("GET", "/index.html")
10 r = h.getresponse()
11 print(r.read())
OLDNEW
« no previous file with comments | « third_party/tlslite/tests/clientX509Key.pem ('k') | third_party/tlslite/tests/httpsserver.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698