-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
43 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
tlslite-ng is a pure python implementation of SSLv3.0, TLS 1.0, TLS 1.1 and | ||
TLS 1.2 protocols. | ||
|
||
It can use pycrypto, m2crypto and gmp for acceleration of cryptographic | ||
operations but is not dependant upon them. | ||
|
||
Functionality implemented include: | ||
- RC4, 3DES-CBC, AES-CBC and AES-GCM ciphers | ||
- MD5, SHA1, SHA256 and SHA384 HMACs as well as AEAD mode of operation | ||
- RSA and DHE_RSA key exchange | ||
- anonymous DHE key exchange | ||
- NULL encryption ciphersuites | ||
- FALLBACK_SCSV | ||
- encrypt-then-MAC mode of operation for CBC ciphersuites | ||
- client certificates | ||
- TACK certificate pinning | ||
- SRP_SHA_RSA ciphersuites | ||
|
||
tlslite-ng aims to be a drop-in replacement for tlslite while providing more | ||
comprehensive set of features and more secure defautls. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,15 +5,34 @@ | |
|
||
from distutils.core import setup | ||
|
||
|
||
|
||
setup(name="tlslite-ng", | ||
version="0.5.0-beta2", | ||
version="0.5.0-beta3", | ||
author="Hubert Kario", | ||
author_email="[email protected]", | ||
url="https://github.com/tomato42/tlslite-ng", | ||
description="tlslite implements SSL and TLS.", | ||
description="Pure python implementation of SSL and TLS.", | ||
license="LGPLv2", | ||
scripts=["scripts/tls.py", "scripts/tlsdb.py"], | ||
packages=["tlslite", "tlslite.utils", "tlslite.integration"], | ||
package_data={ | ||
'package1': ['LICENSE', 'README.md']}, | ||
obsoletes=["tlslite"], | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2.6', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.2', | ||
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
'Topic :: Security :: Cryptography', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
'Topic :: System :: Networking' | ||
], | ||
keywords="ssl, tls, pure-python" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters