Skip to content

Commit 6520aaf

Browse files
committed
Update to version 2.1.5
1 parent d938e86 commit 6520aaf

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [2.1.5]
4+
### Fixed
5+
- Timing leakage from nonce bit length aka the [Minerva](https://minerva.crocs.fi.muni.cz/) vulnerability (PR #60)
6+
37
## [2.1.4]
48
### Fixed
59
- Reduction by base point order in scalar multiplication breaks when input point does not have that order (PR #58)

README.rst

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,6 @@ digital signatures.
2121

2222
Security
2323
--------
24-
Current Issues
25-
~~~~~~~~~~~~~~
26-
* Minerva - see issue #40
27-
28-
Overview
29-
~~~~~~~~
3024
There is no nonce reuse, no branching on secret material,
3125
and all points are validated before any operations are performed on them. Timing side challenges
3226
are mitigated via Montgomery point multiplication. Nonces are generated per RFC6979_. The default
@@ -353,6 +347,7 @@ Thanks to those below for contributing improvements:
353347
- bbbrumley
354348
- luinxz
355349
- JJChiDguez
350+
- J08nY
356351

357352
.. _issue11: https://github.com/AntonKueltz/fastecdsa/issues/11
358353
.. _GMP: https://gmplib.org/

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
# The short X.Y version.
6565
version = '2.1'
6666
# The full version, including alpha/beta/rc tags.
67-
release = '2.1.4'
67+
release = '2.1.5'
6868

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ def run(self):
5757
name='fastecdsa',
5858
packages=find_packages(),
5959
url='https://github.com/AntonKueltz/fastecdsa',
60-
version='2.1.4',
60+
version='2.1.5',
6161
)

0 commit comments

Comments
 (0)