Skip to content

Commit e671d94

Browse files
committed
release v0.8.0-alpha32
1 parent 3e7bddd commit e671d94

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

README

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Functionality implemented include:
2525
- anonymous ECDH key exchange
2626
- PSK and PSK-DH key exchange in TLS 1.3
2727
- session ticket based resumption in TLS 1.3
28+
- post-handshake key authentication in TLS 1.3
2829
- NULL encryption ciphersuites
2930
- FALLBACK_SCSV (RFC 7507)
3031
- encrypt-then-MAC mode of operation for CBC ciphersuites (RFC 7366)

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tlslite-ng version 0.8.0-alpha31 (2019-11-26)
1+
tlslite-ng version 0.8.0-alpha32 (2019-11-27)
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)
@@ -66,8 +66,8 @@ Implemented TLS features include:
6666
* keying material exporter
6767
* RSA, RSA-PSS and ECDSA certificates
6868
* ticket based session resumption in TLSv1.3
69-
* 1-RTT handshake, Hello Retry Request, middlebox compatibility mode and
70-
cookie extension
69+
* 1-RTT handshake, Hello Retry Request, middlebox compatibility mode,
70+
cookie extension, post-handshake authentication and KeyUpdate
7171
(TLS 1.3)
7272
* FFDHE supported_groups extension
7373
* X25519 and X448 ECDHE key exchange
@@ -614,6 +614,7 @@ may not work with all asyncore.dispatcher subclasses.
614614
* TLS Keying Material Exporter support in TLS 1.3 (Simo Sorce)
615615
* client certificate support (Simo Sorce)
616616
* KeyUpdate support
617+
* post-handshake key authentication
617618
* fix minor compatibility issue with Jython2.7 (Filip Goldefus)
618619
* higher precision of throughput measurement on non-Linux platforms
619620
(Efthimis Iosifidis)

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
version = u'0.8'
6363
# The full version, including alpha/beta/rc tags.
64-
release = u'0.8.0-alpha31'
64+
release = u'0.8.0-alpha32'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
README = f.read()
1212

1313
setup(name="tlslite-ng",
14-
version="0.8.0-alpha31",
14+
version="0.8.0-alpha32",
1515
author="Hubert Kario",
1616
author_email="[email protected]",
1717
url="https://github.com/tomato42/tlslite-ng",

tlslite/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
Then 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-alpha31
24+
@version: 0.8.0-alpha32
2525
"""
2626

2727
from tlslite.api import *

tlslite/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Author: Trevor Perrin
22
# See the LICENSE file for legal information regarding use of this file.
33

4-
__version__ = "0.8.0-alpha31"
4+
__version__ = "0.8.0-alpha32"
55
from .constants import AlertLevel, AlertDescription, Fault
66
from .errors import *
77
from .checker import Checker

0 commit comments

Comments
 (0)