Skip to content

Commit 7b7a811

Browse files
committed
release 0.8.0-alpha42
1 parent 80b4c7a commit 7b7a811

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tlslite-ng version 0.8.0-alpha41 (2021-05-26)
1+
tlslite-ng version 0.8.0-alpha42 (2021-08-06)
22

33
[![Build Status](https://github.com/tlsfuzzer/tlslite-ng/workflows/GitHub%20CI/badge.svg?branch=master)](https://github.com/tlsfuzzer/tlslite-ng/actions?query=workflow%3A%22GitHub+CI%22+branch%3Amaster)
44
[![Read the Docs](https://img.shields.io/readthedocs/tlslite-ng)](https://tlslite-ng.readthedocs.io/en/latest/)
@@ -61,13 +61,14 @@ Implemented TLS features include:
6161
* Extended master secret
6262
* padding extension
6363
* keying material exporter
64-
* RSA, RSA-PSS and ECDSA certificates
64+
* RSA, RSA-PSS, ECDSA, and EdDSA certificates
6565
* ticket based session resumption in TLSv1.3
6666
* 1-RTT handshake, Hello Retry Request, middlebox compatibility mode,
6767
cookie extension, post-handshake authentication and KeyUpdate
6868
(TLS 1.3)
6969
* FFDHE supported_groups extension
7070
* X25519 and X448 ECDHE key exchange
71+
* Ed25519 and Ed448 EdDSA signatures
7172
* (experimental) TACK extension
7273
* heartbeat extension and protocol
7374
* Record Size Limit extension
@@ -686,6 +687,9 @@ may not work with all asyncore.dispatcher subclasses.
686687
backends
687688
* strict handling of CCS in TLS 1.3 (don't allow it post handshake)
688689
* improved RSA key generation - don't generate biased primes
690+
* support for both encodings of RSA-PSS algorithm identifier in X.509
691+
* Support for EdDSA (Ed25519 and Ed448) in TLS 1.2 and TLS 1.3, both
692+
for server and client certificates
689693
690694
691695
0.7.0 - 2017-07-31

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
# The short X.Y version.
6363
version = u'0.8'
6464
# The full version, including alpha/beta/rc tags.
65-
release = u'0.8.0-alpha41'
65+
release = u'0.8.0-alpha42'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# 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-alpha41",
14+
version="0.8.0-alpha42",
1515
author="Hubert Kario",
1616
author_email="hkario@redhat.com",
1717
url="https://github.com/tlsfuzzer/tlslite-ng",

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-alpha41"
4+
__version__ = "0.8.0-alpha42"
55
from .constants import AlertLevel, AlertDescription, Fault
66
from .errors import *
77
from .checker import Checker

0 commit comments

Comments
 (0)