File tree 4 files changed +8
-6
lines changed
4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 1
- tlslite-ng version 0.8.0-alpha40 (2021-01-22 )
1
+ tlslite-ng version 0.8.0-alpha41 (2021-05-26 )
2
2
3
3
[ ![ 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 )
4
4
[ ![ 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.
673
673
(minor speed up for RSA operations)
674
674
* refactor certificate selection, make server select certificate based on
675
675
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)
678
678
* small optimisations to PRF methods, speeds to handshake
679
679
* support for MD5 signatures in X.509 certificates (Jean-Romain Garnier)
680
680
* add support for Brainpool curves in TLS 1.2 and earlier (pytz)
@@ -684,6 +684,8 @@ may not work with all asyncore.dispatcher subclasses.
684
684
in-memory with m2crypto wouldn't work for decryption/encryption
685
685
* handle too short RSA ciphertexts for the key size consistently between
686
686
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
687
689
688
690
689
691
0.7.0 - 2017-07-31
Original file line number Diff line number Diff line change 62
62
# The short X.Y version.
63
63
version = u'0.8'
64
64
# The full version, including alpha/beta/rc tags.
65
- release = u'0.8.0-alpha40 '
65
+ release = u'0.8.0-alpha41 '
66
66
67
67
# The language for content autogenerated by Sphinx. Refer to documentation
68
68
# for a list of supported languages.
Original file line number Diff line number Diff line change 11
11
README = f .read ()
12
12
13
13
setup (name = "tlslite-ng" ,
14
- version = "0.8.0-alpha40 " ,
14
+ version = "0.8.0-alpha41 " ,
15
15
author = "Hubert Kario" ,
16
16
17
17
url = "https://github.com/tlsfuzzer/tlslite-ng" ,
Original file line number Diff line number Diff line change 1
1
# Author: Trevor Perrin
2
2
# See the LICENSE file for legal information regarding use of this file.
3
3
4
- __version__ = "0.8.0-alpha40 "
4
+ __version__ = "0.8.0-alpha41 "
5
5
from .constants import AlertLevel , AlertDescription , Fault
6
6
from .errors import *
7
7
from .checker import Checker
You can’t perform that action at this time.
0 commit comments