Skip to content

Commit

Permalink
release 0.8.0-alpha46
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Aug 3, 2023
1 parent e5722d5 commit 46403b1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ Functionality implemented include:
- anonymous DHE key exchange
- anonymous ECDH key exchange
- PSK and PSK-DH key exchange in TLS 1.3
- session ticket based resumption in TLS 1.3
- post-handshake key authentication in TLS 1.3
- session ticket based resumption (RFC 5077) and in TLS 1.3
- post-handshake client authentication in TLS 1.3
- NULL encryption ciphersuites
- FALLBACK_SCSV (RFC 7507)
- encrypt-then-MAC mode of operation for CBC ciphersuites (RFC 7366)
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tlslite-ng version 0.8.0-alpha45 (2023-08-01)
tlslite-ng version 0.8.0-alpha46 (2023-08-03)

[![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 @@ -62,7 +62,7 @@ Implemented TLS features include:
* padding extension
* keying material exporter
* RSA, RSA-PSS, ECDSA, and EdDSA certificates
* ticket based session resumption in TLSv1.3
* ticket based session resumption
* 1-RTT handshake, Hello Retry Request, middlebox compatibility mode,
cookie extension, post-handshake authentication and KeyUpdate
(TLS 1.3)
Expand Down Expand Up @@ -686,6 +686,7 @@ may not work with all asyncore.dispatcher subclasses.
* handle too short RSA ciphertexts for the key size consistently between
backends
* strict handling of CCS in TLS 1.3 (don't allow it post handshake)
* detect and reject multi-byte CCS messages
* improved RSA key generation - don't generate biased primes
* support for both encodings of RSA-PSS algorithm identifier in X.509
* Support for EdDSA (Ed25519 and Ed448) in TLS 1.2 and TLS 1.3, both
Expand All @@ -694,7 +695,8 @@ may not work with all asyncore.dispatcher subclasses.
* Better handling of HMACs in FIPS mode
* Generate RSA keys with 65537 as public exponent with m2crypto (as with
other backends)
* Ticket based session resumption in TLS 1.2 and earlier
* strict size checking of `session_id` field in ClientHello
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 @@ -62,7 +62,7 @@
# The short X.Y version.
version = u'0.8'
# The full version, including alpha/beta/rc tags.
release = u'0.8.0-alpha45'
release = u'0.8.0-alpha46'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
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-alpha45",
version="0.8.0-alpha46",
author="Hubert 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
@@ -1,7 +1,7 @@
# Author: Trevor Perrin
# See the LICENSE file for legal information regarding use of this file.

__version__ = "0.8.0-alpha45"
__version__ = "0.8.0-alpha46"
# 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 46403b1

Please sign in to comment.