Skip to content

Commit

Permalink
release 0.8.0-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Aug 24, 2023
1 parent 8370b03 commit 1ff516b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ operations but is not dependant upon them.
Functionality implemented include:
- all above mentioned protocols, including support for client certificates
(RFC 6101, RFC 2246, RFC 4346, RFC 5246, RFC 8446 - not complete)
- RSA, RSA-PSS and ECDSA certificates
- RSA, RSA-PSS, DSA, and ECDSA certificates
- RC4, 3DES-CBC, AES-CBC, AES-GCM, AES-CCM, AES-CCM_8 and ChaCha20 ciphers
(RFC 5246, RFC 6347, RFC 4492, RFC 5288, RFC 5289, RFC 7539, RFC 7905,
RFC 6655, RFC 7251)
- MD5, SHA1, SHA256 and SHA384 HMACs as well as AEAD mode of operation with
GCM or Poly1305 authenticator
- RSA, DHE_RSA, ECDHE_RSA, ECDHE_ECDSA key exchange
- RSA, DHE_RSA, DHE_DSS, ECDHE_RSA, ECDHE_ECDSA key exchange
- full set of signature hashes (md5, sha1, sha224, sha256, sha384, sha512,
rsa_pss_rsae_sha256, rsa_pss_rsae_sha384 and rsa_pss_rsae_sha512) for
ServerKeyExchange and CertfificateVerify
Expand Down
5 changes: 3 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-alpha47 (2023-08-21)
tlslite-ng version 0.8.0-beta1 (2023-08-24)

[![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 @@ -61,7 +61,7 @@ Implemented TLS features include:
* Extended master secret
* padding extension
* keying material exporter
* RSA, RSA-PSS, ECDSA, and EdDSA certificates
* RSA, RSA-PSS, DSA, ECDSA, and EdDSA certificates
* ticket based session resumption
* 1-RTT handshake, Hello Retry Request, middlebox compatibility mode,
cookie extension, post-handshake authentication and KeyUpdate
Expand Down Expand Up @@ -676,6 +676,7 @@ may not work with all asyncore.dispatcher subclasses.
curves and signature algorithms advertised by client (Ivan Nikolchev)
* basic support for DSA certificates; verification of DSA signatures
in ServerKeyExchange (Frantisek Krenzelok)
* support for DSA client certificates
* small optimisations to PRF methods, speeds to handshake
* support for MD5 signatures in X.509 certificates (Jean-Romain Garnier)
* add support for Brainpool curves in TLS 1.2 and earlier (pytz)
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-alpha47'
release = u'0.8.0-beta1'

# 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-alpha47",
version="0.8.0-beta1",
author="Hubert Kario",
author_email="hkario@redhat.com",
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-alpha47"
__version__ = "0.8.0-beta1"
# 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 1ff516b

Please sign in to comment.