From 172fa447010c90d201a1f6e2d6fea43e46ebf137eaa279c82b88b089c83354ac Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Thu, 17 Sep 2020 11:15:58 +0000 Subject: [PATCH] - update to 0.16.0: * Support for reading and writing private keys in PKCS#8 format. * `to_pem` and `to_der` now accept new parameter, `format`, to specify * the format of the encoded files, either the dafault, legacy "ssleay", or * the new `pkcs8` to use PKCS#8. Note that only unencrypted PKCS#8 files are * supported. * Add `allow_truncate` to `verify` in `VerifyingKey`, it defaults to True, * when specified as False, use of large hashes smaller than curves will be * disallowed (as it was in 0.14.1 and earlier). * Correctly calculate signatures for private keys equal to n-1. * Make `PointJacobi` and thus `SigningKey` and `VerifyingKey` pickleable. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ecdsa?expand=0&rev=25 --- ecdsa-0.15.tar.gz | 3 --- ecdsa-0.16.0.tar.gz | 3 +++ python-ecdsa.changes | 15 +++++++++++++++ python-ecdsa.spec | 2 +- 4 files changed, 19 insertions(+), 4 deletions(-) delete mode 100644 ecdsa-0.15.tar.gz create mode 100644 ecdsa-0.16.0.tar.gz diff --git a/ecdsa-0.15.tar.gz b/ecdsa-0.15.tar.gz deleted file mode 100644 index 0b9923a..0000000 --- a/ecdsa-0.15.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8f12ac317f8a1318efa75757ef0a651abe12e51fc1af8838fb91079445227277 -size 122119 diff --git a/ecdsa-0.16.0.tar.gz b/ecdsa-0.16.0.tar.gz new file mode 100644 index 0000000..2553e99 --- /dev/null +++ b/ecdsa-0.16.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:494c6a853e9ed2e9be33d160b41d47afc50a6629b993d2b9c5ad7bb226add892 +size 125851 diff --git a/python-ecdsa.changes b/python-ecdsa.changes index a62781e..64a2c02 100644 --- a/python-ecdsa.changes +++ b/python-ecdsa.changes @@ -1,3 +1,18 @@ +------------------------------------------------------------------- +Thu Sep 17 11:14:57 UTC 2020 - Dirk Mueller + +- update to 0.16.0: + * Support for reading and writing private keys in PKCS#8 format. + * `to_pem` and `to_der` now accept new parameter, `format`, to specify + * the format of the encoded files, either the dafault, legacy "ssleay", or + * the new `pkcs8` to use PKCS#8. Note that only unencrypted PKCS#8 files are + * supported. + * Add `allow_truncate` to `verify` in `VerifyingKey`, it defaults to True, + * when specified as False, use of large hashes smaller than curves will be + * disallowed (as it was in 0.14.1 and earlier). + * Correctly calculate signatures for private keys equal to n-1. + * Make `PointJacobi` and thus `SigningKey` and `VerifyingKey` pickleable. + ------------------------------------------------------------------- Mon Feb 24 15:34:49 UTC 2020 - Ondřej Súkup diff --git a/python-ecdsa.spec b/python-ecdsa.spec index 6f4f3e5..5b69567 100644 --- a/python-ecdsa.spec +++ b/python-ecdsa.spec @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-ecdsa -Version: 0.15 +Version: 0.16.0 Release: 0 Summary: ECDSA cryptographic signature library (pure python) License: MIT