Skip to content

Commit 719628a

Browse files
committed
release 0.7.5
1 parent d35a3e1 commit 719628a

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
```
2-
tlslite-ng version 0.7.4 2018-04-09
2+
tlslite-ng version 0.7.5 2018-07-31
33
Hubert Kario <hkario at redhat.com>
44
https://github.com/tomato42/tlslite-ng/
55
```
@@ -586,6 +586,12 @@ encrypt-then-MAC mode for CBC ciphers.
586586
12 History
587587
===========
588588
589+
0.7.5 - 2018-07-31
590+
* Fix multithreading issue with pure python RSA implementation private key
591+
opterations (either decryption using RSA private key or signing messages
592+
would fail or provide malformed signatures if two threads would perform
593+
those operations at the same time).
594+
589595
0.7.4 - 2018-04-09
590596
* Fix CVE-2018-1000159 - the ct_check_cbc_mac_and_pad() did fail to verify the
591597
MAC properly when last byte of data was byte 0

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
version = u'0.7'
6363
# The full version, including alpha/beta/rc tags.
64-
release = u'0.7.4'
64+
release = u'0.7.5'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
README = f.read()
1212

1313
setup(name="tlslite-ng",
14-
version="0.7.4",
14+
version="0.7.5",
1515
author="Hubert Kario",
1616
author_email="hkario@redhat.com",
1717
url="https://github.com/tomato42/tlslite-ng",

tlslite/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
Then 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.7.4
24+
@version: 0.7.5
2525
"""
2626

2727
from tlslite.api import *

tlslite/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Author: Trevor Perrin
22
# See the LICENSE file for legal information regarding use of this file.
33

4-
__version__ = "0.7.4"
4+
__version__ = "0.7.5"
55
from .constants import AlertLevel, AlertDescription, Fault
66
from .errors import *
77
from .checker import Checker

0 commit comments

Comments
 (0)