Package tlslite
source code
TLS Lite is a free python library that implements SSL and TLS. TLS
Lite supports RSA and SRP ciphersuites. TLS Lite is pure python, however
it can use other libraries for faster crypto operations. TLS Lite
integrates with several stdlib neworking libraries.
API documentation is available in the 'docs' directory.
If you have questions or feedback, feel free to contact me.
To use, do:
from tlslite import TLSConnection, ...
If you want to import the most useful objects, the cleanest way
is:
from tlslite.api import *
Then use the tlslite.TLSConnection.TLSConnection class with a socket.
(Or, use one of the integration classes in tlslite.integration).
|
__package__ = ' tlslite '
|
|
__version__ = ' 0.6.0-beta1 '
|
|
gmpyLoaded = False
|
|
m2cryptoLoaded = True
|
|
prngName = ' os.urandom '
|
|
pycryptoLoaded = True
|
|
tackpyLoaded = False
|