Skip to content

Commit 2fc7602

Browse files
committed
release 0.8.0-beta5
1 parent 6342bda commit 2fc7602

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

README

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ Functionality implemented include:
4040
- Heartbeat Extension (RFC 6520)
4141
- Record Size Limit (RFC 8449)
4242
- TLS Certificate Compression (RFC 8879)
43+
- Hybrid ML-KEM key exchage groups (draft-kwiatkowski-tls-ecdhe-mlkem-02)
4344

4445

4546
tlslite-ng aims to be a drop-in replacement for tlslite while providing more

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tlslite-ng version 0.8.0-beta4 (2024-10-18)
1+
tlslite-ng version 0.8.0-beta5 (2024-10-18)
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/)
@@ -50,7 +50,7 @@ file.
5050
Implemented TLS features include:
5151

5252
* SSLv3, TLSv1.0, TLSv1.1, TLSv1.2 and TLSv1.3
53-
* ciphersuites with DHE, ADH, ECDHE, AECDH, RSA and SRP
53+
* ciphersuites with DHE, ADH, ECDHE, AECDH, ML-KEM, RSA and SRP
5454
key exchange together
5555
with AES (CBC, GCM, CCM and CCM_8), 3DES, RC4 and ChaCha20 (both the official
5656
standard and the IETF draft) symmetric ciphers and NULL encryption.
@@ -712,6 +712,9 @@ TLSAsyncioDispatcherMixIn.py.
712712
* Fix int_to_bytes and numberToByteArray encoding of 0 with length not
713713
specified, and thus also ClientKeyExchange handling for DHE with missing
714714
key share
715+
* (Experimental) Support for hybrid KEM key exchange groups from
716+
draft-kwiatkowski-tls-ecdhe-mlkem-02. To work, kyber-py v1.0 library must
717+
be installed.
715718
716719
0.7.0 - 2017-07-31
717720

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# The short X.Y version.
3535
version = u'0.8'
3636
# The full version, including alpha/beta/rc tags.
37-
release = u'0.8.0-beta4'
37+
release = u'0.8.0-beta5'
3838

3939

4040
# -- General configuration ---------------------------------------------------

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-beta4",
14+
version="0.8.0-beta5",
1515
author="Alicja 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
@@ -4,7 +4,7 @@
44
#
55
# See the LICENSE file for legal information regarding use of this file.
66

7-
__version__ = "0.8.0-beta4"
7+
__version__ = "0.8.0-beta5"
88
# the whole module is about importing most commonly used methods, for use
99
# by other applications
1010
# pylint: disable=unused-import

0 commit comments

Comments
 (0)