Skip to content

Commit

Permalink
release 0.8.0-beta5
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Oct 18, 2024
1 parent 6342bda commit 2fc7602
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
1 change: 1 addition & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Functionality implemented include:
- Heartbeat Extension (RFC 6520)
- Record Size Limit (RFC 8449)
- TLS Certificate Compression (RFC 8879)
- Hybrid ML-KEM key exchage groups (draft-kwiatkowski-tls-ecdhe-mlkem-02)


tlslite-ng aims to be a drop-in replacement for tlslite while providing more
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tlslite-ng version 0.8.0-beta4 (2024-10-18)
tlslite-ng version 0.8.0-beta5 (2024-10-18)

[![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)
[![Read the Docs](https://img.shields.io/readthedocs/tlslite-ng)](https://tlslite-ng.readthedocs.io/en/latest/)
Expand Down Expand Up @@ -50,7 +50,7 @@ file.
Implemented TLS features include:

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

0.7.0 - 2017-07-31

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
# The short X.Y version.
version = u'0.8'
# The full version, including alpha/beta/rc tags.
release = u'0.8.0-beta4'
release = u'0.8.0-beta5'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
README = f.read()

setup(name="tlslite-ng",
version="0.8.0-beta4",
version="0.8.0-beta5",
author="Alicja Kario",
author_email="[email protected]",
url="https://github.com/tlsfuzzer/tlslite-ng",
Expand Down
2 changes: 1 addition & 1 deletion tlslite/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# See the LICENSE file for legal information regarding use of this file.

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

0 comments on commit 2fc7602

Please sign in to comment.