File tree Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ Functionality implemented include:
41
41
- Record Size Limit (RFC 8449)
42
42
- TLS Certificate Compression (RFC 8879)
43
43
- Hybrid ML-KEM key exchage groups (draft-kwiatkowski-tls-ecdhe-mlkem-02)
44
+ - support for Brainpool curves in TLS 1.2 and TLS 1.3
44
45
45
46
46
47
tlslite-ng aims to be a drop-in replacement for tlslite while providing more
Original file line number Diff line number Diff line change 1
- tlslite-ng version 0.8.0-beta5 (2024-10-18 )
1
+ tlslite-ng version 0.8.0-beta6 (2024-11-27 )
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/ )
@@ -706,7 +706,7 @@ TLSAsyncioDispatcherMixIn.py.
706
706
of shared secrets (Ganna Starovoytova)
707
707
* fix sending of session ticket extension from the server without
708
708
a ticket (George Pantelakis)
709
- * add Brainpool IDs for TLS 1.3 from RFC 8734
709
+ * add support for Brainpool curves in TLS 1.3 from RFC 8734
710
710
* add support for compress_certificate extension from RFC 8879
711
711
(George Pantelakis)
712
712
* Fix int_to_bytes and numberToByteArray encoding of 0 with length not
@@ -715,6 +715,8 @@ TLSAsyncioDispatcherMixIn.py.
715
715
* (Experimental) Support for hybrid KEM key exchange groups from
716
716
draft-kwiatkowski-tls-ecdhe-mlkem-02. To work, kyber-py v1.0 library must
717
717
be installed.
718
+ * support for setting a list of supported key exchange groups in the
719
+ `tls.py server`
718
720
719
721
0.7.0 - 2017-07-31
720
722
Original file line number Diff line number Diff line change 34
34
# The short X.Y version.
35
35
version = u'0.8'
36
36
# The full version, including alpha/beta/rc tags.
37
- release = u'0.8.0-beta5 '
37
+ release = u'0.8.0-beta6 '
38
38
39
39
40
40
# -- General configuration ---------------------------------------------------
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-beta5 " ,
14
+ version = "0.8.0-beta6 " ,
15
15
author = "Alicja Kario" ,
16
16
17
17
url = "https://github.com/tlsfuzzer/tlslite-ng" ,
Original file line number Diff line number Diff line change 4
4
#
5
5
# See the LICENSE file for legal information regarding use of this file.
6
6
7
- __version__ = "0.8.0-beta5 "
7
+ __version__ = "0.8.0-beta6 "
8
8
# the whole module is about importing most commonly used methods, for use
9
9
# by other applications
10
10
# pylint: disable=unused-import
You can’t perform that action at this time.
0 commit comments