File tree Expand file tree Collapse file tree 4 files changed +13
-4
lines changed
Expand file tree Collapse file tree 4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1- tlslite-ng version 0.8.0-alpha37 (2020-02 -17)
1+ tlslite-ng version 0.8.0-alpha38 (2020-06 -17)
22
33[ ![ Build Status] ( https://travis-ci.org/tomato42/tlslite-ng.svg?branch=master )] ( https://travis-ci.org/tomato42/tlslite-ng )
44[ ![ Read the Docs] ( https://img.shields.io/readthedocs/tlslite-ng )] ( https://tlslite-ng.readthedocs.io/en/latest/ )
@@ -655,6 +655,15 @@ may not work with all asyncore.dispatcher subclasses.
655655* AES-CCM and AES-CCM8 support (in TLS 1.2 and TLS 1.3) (Ivan Nikolchev)
656656* added support for configuring enabled ciphers in `tls.py` (Ivan Nikolchev)
657657* two times faster 3DES when using m2crypto (Alexander Sosedkin)
658+ * correct handling of malformed X.509 certificates (Ivan Nikolchev)
659+ * speed up AES-CCM and AES-GCM when m2crypto is installed (Ivan Nikolchev)
660+ * client side checks for downgrade protection from TLS 1.3 (Ivan Nikolchev)
661+ * use TLS 1.3 test vectors to verify the implementation (Ivan Nikolchev)
662+ * unify master secret and finished calculation (Ivan Nikolchev)
663+ * detect pycryptodome, disable pycrypto code if it's present
664+ * add multiple well-known DH groups from RFC 2409, RFC 5114 and RFC 3526,
665+ unify formatting of the existing DH group (use exactly the formatting used
666+ in the RFC's)
658667
6596680.7.0 - 2017-07-31
660669
Original file line number Diff line number Diff line change 6262# The short X.Y version.
6363version = u'0.8'
6464# The full version, including alpha/beta/rc tags.
65- release = u'0.8.0-alpha37 '
65+ release = u'0.8.0-alpha38 '
6666
6767# The language for content autogenerated by Sphinx. Refer to documentation
6868# for a list of supported languages.
Original file line number Diff line number Diff line change 1111 README = f .read ()
1212
1313setup (name = "tlslite-ng" ,
14- version = "0.8.0-alpha37 " ,
14+ version = "0.8.0-alpha38 " ,
1515 author = "Hubert Kario" ,
16161717 url = "https://github.com/tomato42/tlslite-ng" ,
Original file line number Diff line number Diff line change 11# Author: Trevor Perrin
22# See the LICENSE file for legal information regarding use of this file.
33
4- __version__ = "0.8.0-alpha37 "
4+ __version__ = "0.8.0-alpha38 "
55from .constants import AlertLevel , AlertDescription , Fault
66from .errors import *
77from .checker import Checker
You can’t perform that action at this time.
0 commit comments