File tree Expand file tree Collapse file tree 5 files changed +11
-5
lines changed Expand file tree Collapse file tree 5 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1
1
```
2
- tlslite-ng version 0.7.4 2018-04-09
2
+ tlslite-ng version 0.7.5 2018-07-31
3
3
Hubert Kario <hkario at redhat.com>
4
4
https://github.com/tomato42/tlslite-ng/
5
5
```
@@ -586,6 +586,12 @@ encrypt-then-MAC mode for CBC ciphers.
586
586
12 History
587
587
===========
588
588
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
+
589
595
0.7.4 - 2018-04-09
590
596
* Fix CVE-2018-1000159 - the ct_check_cbc_mac_and_pad() did fail to verify the
591
597
MAC properly when last byte of data was byte 0
Original file line number Diff line number Diff line change 61
61
# The short X.Y version.
62
62
version = u'0.7'
63
63
# The full version, including alpha/beta/rc tags.
64
- release = u'0.7.4 '
64
+ release = u'0.7.5 '
65
65
66
66
# The language for content autogenerated by Sphinx. Refer to documentation
67
67
# for a list of supported languages.
Original file line number Diff line number Diff line change 11
11
README = f .read ()
12
12
13
13
setup (name = "tlslite-ng" ,
14
- version = "0.7.4 " ,
14
+ version = "0.7.5 " ,
15
15
author = "Hubert Kario" ,
16
16
author_email = "hkario@redhat.com" ,
17
17
url = "https://github.com/tomato42/tlslite-ng" ,
Original file line number Diff line number Diff line change 21
21
Then use the L{tlslite.TLSConnection.TLSConnection} class with a socket.
22
22
(Or, use one of the integration classes in L{tlslite.integration}).
23
23
24
- @version: 0.7.4
24
+ @version: 0.7.5
25
25
"""
26
26
27
27
from tlslite .api import *
Original file line number Diff line number Diff line change 1
1
# Author: Trevor Perrin
2
2
# See the LICENSE file for legal information regarding use of this file.
3
3
4
- __version__ = "0.7.4 "
4
+ __version__ = "0.7.5 "
5
5
from .constants import AlertLevel , AlertDescription , Fault
6
6
from .errors import *
7
7
from .checker import Checker
You can’t perform that action at this time.
0 commit comments