Skip to content

Commit 7dd5b95

Browse files
committed
release 0.8.0-alpha41
1 parent 36b5b65 commit 7dd5b95

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tlslite-ng version 0.8.0-alpha40 (2021-01-22)
1+
tlslite-ng version 0.8.0-alpha41 (2021-05-26)
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/)
@@ -673,8 +673,8 @@ may not work with all asyncore.dispatcher subclasses.
673673
(minor speed up for RSA operations)
674674
* refactor certificate selection, make server select certificate based on
675675
curves and signature algorithms advertised by client (Ivan Nikolchev)
676-
* basic support for DSA certificates; not usable in TLS yet (Frantisek
677-
Krenzelok)
676+
* basic support for DSA certificates; verification of DSA signatures
677+
in ServerKeyExchange (Frantisek Krenzelok)
678678
* small optimisations to PRF methods, speeds to handshake
679679
* support for MD5 signatures in X.509 certificates (Jean-Romain Garnier)
680680
* add support for Brainpool curves in TLS 1.2 and earlier (pytz)
@@ -684,6 +684,8 @@ may not work with all asyncore.dispatcher subclasses.
684684
in-memory with m2crypto wouldn't work for decryption/encryption
685685
* handle too short RSA ciphertexts for the key size consistently between
686686
backends
687+
* strict handling of CCS in TLS 1.3 (don't allow it post handshake)
688+
* improved RSA key generation - don't generate biased primes
687689
688690
689691
0.7.0 - 2017-07-31

docs/conf.py

+1-1
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-alpha40'
65+
release = u'0.8.0-alpha41'
6666

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

setup.py

+1-1
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-alpha40",
14+
version="0.8.0-alpha41",
1515
author="Hubert Kario",
1616
author_email="[email protected]",
1717
url="https://github.com/tlsfuzzer/tlslite-ng",

tlslite/api.py

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

0 commit comments

Comments
 (0)