File tree Expand file tree Collapse file tree 5 files changed +7
-6
lines changed Expand file tree Collapse file tree 5 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1- tlslite-ng version 0.8.0-alpha27 (2019-09-16 )
1+ tlslite-ng version 0.8.0-alpha28 (2019-10-10 )
22
33[ ![ Build Status] ( https://travis-ci.org/tomato42/tlslite-ng.svg?branch=master )] ( https://travis-ci.org/tomato42/tlslite-ng )
44[ ![ Coverage Status] ( https://coveralls.io/repos/tomato42/tlslite-ng/badge.svg?branch=master )] ( https://coveralls.io/r/tomato42/tlslite-ng?branch=master )
@@ -64,7 +64,7 @@ Implemented TLS features include:
6464* Extended master secret
6565* padding extension
6666* keying material exporter
67- * RSA-PSS signatures in TLSv1.2 , RSA-PSS in certificates (TLSv1.3 extension)
67+ * RSA, RSA-PSS and ECDSA certificates
6868* ticket based session resumption in TLSv1.3
6969* 1-RTT handshake, Hello Retry Request, middlebox compatibility mode and
7070 cookie extension
@@ -639,6 +639,7 @@ may not work with all asyncore.dispatcher subclasses.
639639* reimplement HMAC in pure python to work-around platforms that disable MD5
640640 HMAC in python (this goes against FIPS requirements)
641641* fix few minor bugs in handling heartbeat messages
642+ * support for ECDSA certificates (server and client, all versions of TLS)
642643
6436440.7.0 - 2017-07-31
644645
Original file line number Diff line number Diff line change 6161# The short X.Y version.
6262version = u'0.8'
6363# The full version, including alpha/beta/rc tags.
64- release = u'0.8.0-alpha27 '
64+ release = u'0.8.0-alpha28 '
6565
6666# The language for content autogenerated by Sphinx. Refer to documentation
6767# 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-alpha27 " ,
14+ version = "0.8.0-alpha28 " ,
1515 author = "Hubert Kario" ,
16161717 url = "https://github.com/tomato42/tlslite-ng" ,
Original file line number Diff line number Diff line change 2121Then use the L{tlslite.TLSConnection.TLSConnection} class with a socket.
2222(Or, use one of the integration classes in L{tlslite.integration}).
2323
24- @version: 0.8.0-alpha27
24+ @version: 0.8.0-alpha28
2525"""
2626
2727from tlslite .api import *
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-alpha27 "
4+ __version__ = "0.8.0-alpha28 "
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