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

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

Issue 211173006: Perform tlslite 0.3.8 -> 0.4.6 renames ahead of time. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Drop the -B 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/tlslite/X509CertChain.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 """ 1 """
2 TLS Lite is a free python library that implements SSL v3, TLS v1, and 2 TLS Lite is a free python library that implements SSL v3, TLS v1, and
3 TLS v1.1. TLS Lite supports non-traditional authentication methods 3 TLS v1.1. TLS Lite supports non-traditional authentication methods
4 such as SRP, shared keys, and cryptoIDs, in addition to X.509 4 such as SRP, shared keys, and cryptoIDs, in addition to X.509
5 certificates. TLS Lite is pure python, however it can access OpenSSL, 5 certificates. TLS Lite is pure python, however it can access OpenSSL,
6 cryptlib, pycrypto, and GMPY for faster crypto operations. TLS Lite 6 cryptlib, pycrypto, and GMPY for faster crypto operations. TLS Lite
7 integrates with httplib, xmlrpclib, poplib, imaplib, smtplib, 7 integrates with httplib, xmlrpclib, poplib, imaplib, smtplib,
8 SocketServer, asyncore, and Twisted. 8 SocketServer, asyncore, and Twisted.
9 9
10 To use, do:: 10 To use, do::
11 11
12 from tlslite.api import * 12 from tlslite.api import *
13 13
14 Then use the L{tlslite.TLSConnection.TLSConnection} class with a socket, 14 Then use the L{tlslite.TLSConnection.TLSConnection} class with a socket,
15 or use one of the integration classes in L{tlslite.integration}. 15 or use one of the integration classes in L{tlslite.integration}.
16 16
17 @version: 0.3.8 17 @version: 0.3.8
18 """ 18 """
19 __version__ = "0.3.8" 19 __version__ = "0.3.8"
20 20
21 __all__ = ["api", 21 __all__ = ["api",
22 "BaseDB", 22 "basedb",
23 "Checker", 23 "checker",
24 "constants", 24 "constants",
25 "errors", 25 "errors",
26 "FileObject", 26 "fileobject",
27 "HandshakeSettings", 27 "handshakesettings",
28 "mathtls", 28 "mathtls",
29 "messages", 29 "messages",
30 "Session", 30 "session",
31 "SessionCache", 31 "sessioncache",
32 "SharedKeyDB", 32 "sharedkeydb",
33 "TLSConnection", 33 "tlsconnection",
34 "TLSRecordLayer", 34 "tlsrecordlayer",
35 "VerifierDB", 35 "verifierdb",
36 "X509", 36 "x509",
37 "X509CertChain", 37 "x509certchain",
38 "integration", 38 "integration",
39 "utils"] 39 "utils"]
OLDNEW
« no previous file with comments | « third_party/tlslite/tlslite/X509CertChain.py ('k') | third_party/tlslite/tlslite/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698