summaryrefslogtreecommitdiffstats
path: root/src/lib/tlslite/__init__.py
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2009-05-06 01:26:53 +0000
committerNarayan Desai <desai@mcs.anl.gov>2009-05-06 01:26:53 +0000
commit9590d0bb421cb7fdf7dd04d4b1d0d77e3f06f13b (patch)
tree768763aa48be1a5a2c8dae7cba81859510f1146e /src/lib/tlslite/__init__.py
parent13f6d1554dd24d08d44662906fa9f3f008a23058 (diff)
downloadbcfg2-9590d0bb421cb7fdf7dd04d4b1d0d77e3f06f13b.tar.gz
bcfg2-9590d0bb421cb7fdf7dd04d4b1d0d77e3f06f13b.tar.bz2
bcfg2-9590d0bb421cb7fdf7dd04d4b1d0d77e3f06f13b.zip
more to python 2.6 ssl
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5187 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/tlslite/__init__.py')
-rwxr-xr-xsrc/lib/tlslite/__init__.py39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/lib/tlslite/__init__.py b/src/lib/tlslite/__init__.py
deleted file mode 100755
index 47cfd1c6f..000000000
--- a/src/lib/tlslite/__init__.py
+++ /dev/null
@@ -1,39 +0,0 @@
-"""
-TLS Lite is a free python library that implements SSL v3, TLS v1, and
-TLS v1.1. TLS Lite supports non-traditional authentication methods
-such as SRP, shared keys, and cryptoIDs, in addition to X.509
-certificates. TLS Lite is pure python, however it can access OpenSSL,
-cryptlib, pycrypto, and GMPY for faster crypto operations. TLS Lite
-integrates with httplib, xmlrpclib, poplib, imaplib, smtplib,
-SocketServer, asyncore, and Twisted.
-
-To use, do::
-
- from tlslite.api import *
-
-Then use the L{tlslite.TLSConnection.TLSConnection} class with a socket,
-or use one of the integration classes in L{tlslite.integration}.
-
-@version: 0.3.8
-"""
-__version__ = "0.3.8"
-
-__all__ = ["api",
- "BaseDB",
- "Checker",
- "constants",
- "errors",
- "FileObject",
- "HandshakeSettings",
- "mathtls",
- "messages",
- "Session",
- "SessionCache",
- "SharedKeyDB",
- "TLSConnection",
- "TLSRecordLayer",
- "VerifierDB",
- "X509",
- "X509CertChain",
- "integration",
- "utils"]