15
0
forked from pool/python-ecdsa

- update to to 0.16.1:

* `VerifyingKey.precompute()` supports `lazy` argument to delay
  precomputation to the first time the key is used to verify a signature.
  * Make created signatures correct when the hash used is bigger than the curve
  order bit size and the curve order is not a multiple of 8 
  * Speed up library load time by calculating the generator point multiplication
  tables the first time the points are used, not when they are initialised.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ecdsa?expand=0&rev=27
This commit is contained in:
2020-12-20 09:23:18 +00:00
committed by Git OBS Bridge
parent 172fa44701
commit d483b95201
4 changed files with 15 additions and 4 deletions

View File

@@ -1,3 +1,14 @@
-------------------------------------------------------------------
Sun Dec 20 09:21:59 UTC 2020 - Dirk Müller <dmueller@suse.com>
- update to to 0.16.1:
* `VerifyingKey.precompute()` supports `lazy` argument to delay
precomputation to the first time the key is used to verify a signature.
* Make created signatures correct when the hash used is bigger than the curve
order bit size and the curve order is not a multiple of 8
* Speed up library load time by calculating the generator point multiplication
tables the first time the points are used, not when they are initialised.
-------------------------------------------------------------------
Thu Sep 17 11:14:57 UTC 2020 - Dirk Mueller <dmueller@suse.com>