We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8370b03 commit 1ff516bCopy full SHA for 1ff516b
README
@@ -7,13 +7,13 @@ operations but is not dependant upon them.
7
Functionality implemented include:
8
- all above mentioned protocols, including support for client certificates
9
(RFC 6101, RFC 2246, RFC 4346, RFC 5246, RFC 8446 - not complete)
10
- - RSA, RSA-PSS and ECDSA certificates
+ - RSA, RSA-PSS, DSA, and ECDSA certificates
11
- RC4, 3DES-CBC, AES-CBC, AES-GCM, AES-CCM, AES-CCM_8 and ChaCha20 ciphers
12
(RFC 5246, RFC 6347, RFC 4492, RFC 5288, RFC 5289, RFC 7539, RFC 7905,
13
RFC 6655, RFC 7251)
14
- MD5, SHA1, SHA256 and SHA384 HMACs as well as AEAD mode of operation with
15
GCM or Poly1305 authenticator
16
- - RSA, DHE_RSA, ECDHE_RSA, ECDHE_ECDSA key exchange
+ - RSA, DHE_RSA, DHE_DSS, ECDHE_RSA, ECDHE_ECDSA key exchange
17
- full set of signature hashes (md5, sha1, sha224, sha256, sha384, sha512,
18
rsa_pss_rsae_sha256, rsa_pss_rsae_sha384 and rsa_pss_rsae_sha512) for
19
ServerKeyExchange and CertfificateVerify
README.md
@@ -1,4 +1,4 @@
1
-tlslite-ng version 0.8.0-alpha47 (2023-08-21)
+tlslite-ng version 0.8.0-beta1 (2023-08-24)
2
3
[](https://github.com/tlsfuzzer/tlslite-ng/actions?query=workflow%3A%22GitHub+CI%22+branch%3Amaster)
4
[](https://tlslite-ng.readthedocs.io/en/latest/)
@@ -61,7 +61,7 @@ Implemented TLS features include:
61
* Extended master secret
62
* padding extension
63
* keying material exporter
64
-* RSA, RSA-PSS, ECDSA, and EdDSA certificates
+* RSA, RSA-PSS, DSA, ECDSA, and EdDSA certificates
65
* ticket based session resumption
66
* 1-RTT handshake, Hello Retry Request, middlebox compatibility mode,
67
cookie extension, post-handshake authentication and KeyUpdate
@@ -676,6 +676,7 @@ may not work with all asyncore.dispatcher subclasses.
676
curves and signature algorithms advertised by client (Ivan Nikolchev)
677
* basic support for DSA certificates; verification of DSA signatures
678
in ServerKeyExchange (Frantisek Krenzelok)
679
+* support for DSA client certificates
680
* small optimisations to PRF methods, speeds to handshake
681
* support for MD5 signatures in X.509 certificates (Jean-Romain Garnier)
682
* add support for Brainpool curves in TLS 1.2 and earlier (pytz)
docs/conf.py
@@ -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
68
# for a list of supported languages.
setup.py
@@ -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="[email protected]",
url="https://github.com/tlsfuzzer/tlslite-ng",
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-alpha47"
+__version__ = "0.8.0-beta1"
5
# the whole module is about importing most commonly used methods, for use
6
# by other applications
# pylint: disable=unused-import
0 commit comments