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

Side by Side Diff: third_party/tlslite/tlslite/__init__.py

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 unified diff | Download patch
« no previous file with comments | « third_party/tlslite/setup.py ('k') | third_party/tlslite/tlslite/api.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Author: Trevor Perrin 1 # Author: Trevor Perrin
2 # See the LICENSE file for legal information regarding use of this file. 2 # See the LICENSE file for legal information regarding use of this file.
3 3
4 """TLS Lite is a free python library that implements SSL and TLS. TLS Lite 4 """TLS Lite is a free python library that implements SSL and TLS. TLS Lite
5 supports RSA and SRP ciphersuites. TLS Lite is pure python, however it can use 5 supports RSA and SRP ciphersuites. TLS Lite is pure python, however it can use
6 other libraries for faster crypto operations. TLS Lite integrates with several 6 other libraries for faster crypto operations. TLS Lite integrates with several
7 stdlib neworking libraries. 7 stdlib neworking libraries.
8 8
9 API documentation is available in the 'docs' directory. 9 API documentation is available in the 'docs' directory.
10 10
11 If you have questions or feedback, feel free to contact me. 11 If you have questions or feedback, feel free to contact me.
12 12
13 To use, do:: 13 To use, do::
14 14
15 from tlslite import TLSConnection, ... 15 from tlslite import TLSConnection, ...
16 16
17 If you want to import the most useful objects, the cleanest way is: 17 If you want to import the most useful objects, the cleanest way is:
18 18
19 from tlslite.api import * 19 from tlslite.api import *
20 20
21 Then use the L{tlslite.TLSConnection.TLSConnection} class with a socket. 21 Then use the L{tlslite.TLSConnection.TLSConnection} class with a socket.
22 (Or, use one of the integration classes in L{tlslite.integration}). 22 (Or, use one of the integration classes in L{tlslite.integration}).
23 23
24 @version: 0.4.6 24 @version: 0.4.8
25 """ 25 """
26 26
27 from tlslite.api import * 27 from tlslite.api import *
28 from tlslite.api import __version__ # Unsure why this is needed, but it is 28 from tlslite.api import __version__ # Unsure why this is needed, but it is
OLDNEW
« no previous file with comments | « third_party/tlslite/setup.py ('k') | third_party/tlslite/tlslite/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698