From 3e656ca10976edbe060e44d6a9609bc01ed509ca Mon Sep 17 00:00:00 2001 From: Hubert Kario Date: Fri, 9 Jun 2023 17:21:56 +0200 Subject: [PATCH] Release 0.8.0-alpha44 --- README.md | 7 +++++-- docs/conf.py | 4 ++-- setup.py | 2 +- tlslite/api.py | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2fb6be17..447c1669 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -tlslite-ng version 0.8.0-alpha43 (2022-05-11) +tlslite-ng version 0.8.0-alpha44 (2022-06-09) [![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/) @@ -585,7 +585,7 @@ may not work with all asyncore.dispatcher subclasses. follow this new style and new deprecations will be introduced as time goes on. Please run your test suite with `-Wd` to see where the depracated calls are being made, the python standard DeprecationWarning will be emited there) -* Python 3.2 is not supported any more (dropped by python-ecdsa) +* Python 3.2, 3.3, and 3.4 is not supported any more (dropped by python-ecdsa) * fix compatibility issue with 8192 bit SRP group from RFC 5054 * fix CVE-2018-1000159 - incorrect verification of MAC in MAC then Encrypt mode @@ -691,6 +691,9 @@ may not work with all asyncore.dispatcher subclasses. * Support for EdDSA (Ed25519 and Ed448) in TLS 1.2 and TLS 1.3, both for server and client certificates * Support for echo server in the example tls.py script +* Better handling of HMACs in FIPS mode +* Generate RSA keys with 65537 as public exponent with m2crypto (as with + other backends) 0.7.0 - 2017-07-31 diff --git a/docs/conf.py b/docs/conf.py index 2eeb4aa4..9d2035bb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,7 +52,7 @@ # General information about the project. project = u'tlslite-ng' -copyright = u'2022, Hubert Kario' +copyright = u'2023, Hubert Kario' author = u'Hubert Kario' # The version info for the project you're documenting, acts as replacement for @@ -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-alpha43' +release = u'0.8.0-alpha44' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 39687fd9..80586b0b 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ README = f.read() setup(name="tlslite-ng", - version="0.8.0-alpha43", + version="0.8.0-alpha44", author="Hubert Kario", author_email="hkario@redhat.com", url="https://github.com/tlsfuzzer/tlslite-ng", diff --git a/tlslite/api.py b/tlslite/api.py index b65aa784..096e0116 100644 --- a/tlslite/api.py +++ b/tlslite/api.py @@ -1,7 +1,7 @@ # Author: Trevor Perrin # See the LICENSE file for legal information regarding use of this file. -__version__ = "0.8.0-alpha43" +__version__ = "0.8.0-alpha44" from .constants import AlertLevel, AlertDescription, Fault from .errors import * from .checker import Checker