File tree Expand file tree Collapse file tree 5 files changed +10
-5
lines changed
Expand file tree Collapse file tree 5 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ Functionality implemented include:
2727 - Extended Master Secret calculation for TLS connections (RFC 7627)
2828 - padding extension (RFC 7685)
2929 - Keying material exporter (RFC 5705)
30+ - Next Protocol Negotiation
31+ - Application-Layer Protocol Negotiation Extension (RFC 7301)
3032
3133
3234tlslite-ng aims to be a drop-in replacement for tlslite while providing more
Original file line number Diff line number Diff line change 11```
2- tlslite-ng version 0.6.0-beta1 2016-08-08
2+ tlslite-ng version 0.6.0 2016-09-07
33Hubert Kario <hkario at redhat.com>
44https://github.com/tomato42/tlslite-ng/
55```
@@ -584,8 +584,11 @@ encrypt-then-MAC mode for CBC ciphers.
58458412 History
585585===========
586586
587- 0.6.0 - WIP
587+ 0.6.0 - 2016-09-07
588588
589+ * added support for ALPN from RFC 7301
590+ * fixed handling of SRP databases
591+ * fixed compatibility issues with Python 3
589592* fixed compatibility with Python 2.7.3
590593* AECDH support on server side (Milan Lysonek)
591594* make the Client Hello parser more strict, it will now abort if the
Original file line number Diff line number Diff line change 88
99
1010setup (name = "tlslite-ng" ,
11- version = "0.6.0-beta1 " ,
11+ version = "0.6.0" ,
1212 author = "Hubert Kario" ,
13131414 url = "https://github.com/tomato42/tlslite-ng" ,
Original file line number Diff line number Diff line change 2121Then use the L{tlslite.TLSConnection.TLSConnection} class with a socket.
2222(Or, use one of the integration classes in L{tlslite.integration}).
2323
24- @version: 0.6.0-beta1
24+ @version: 0.6.0
2525"""
2626
2727from tlslite .api import *
Original file line number Diff line number Diff line change 11# Author: Trevor Perrin
22# See the LICENSE file for legal information regarding use of this file.
33
4- __version__ = "0.6.0-beta1 "
4+ __version__ = "0.6.0"
55from .constants import AlertLevel , AlertDescription , Fault
66from .errors import *
77from .checker import Checker
You can’t perform that action at this time.
0 commit comments