aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2020-08-28 16:51:27 +0300
committerKhem Raj <raj.khem@gmail.com>2020-08-31 13:04:44 -0700
commita58f9163d3a2074d7a76e538af44755a632e4717 (patch)
tree036f473ecde80144710e7f58f7386274e01d87a7
parent62c4bd8c64a9f7d66be5bec2698413c07ea531b5 (diff)
downloadmeta-openembedded-contrib-a58f9163d3a2074d7a76e538af44755a632e4717.tar.gz
python3-ecdsa: Upgrade 0.15 -> 0.16.0
Upgrade to release 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 - to_pem functions return bytes not str, document them as such - from_pem and from_pem in SigningKey returns SigningKey, document them as such - Ensure that version checks will work with Python 4. - Format the source with black. - Fix uses of assert_ in test suite. - Use newer Ubuntu in Travis to test against OpenSSL 1.1.1 (and thus test the interoperability of ECDH code in Travis). Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-python/recipes-devtools/python/python3-ecdsa_0.16.0.bb (renamed from meta-python/recipes-devtools/python/python3-ecdsa_0.15.bb)3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python3-ecdsa_0.15.bb b/meta-python/recipes-devtools/python/python3-ecdsa_0.16.0.bb
index aba62f3ef9..36bb246fdf 100644
--- a/meta-python/recipes-devtools/python/python3-ecdsa_0.15.bb
+++ b/meta-python/recipes-devtools/python/python3-ecdsa_0.16.0.bb
@@ -6,7 +6,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=66ffc5e30f76cbb5358fe54b645e5a1d"
DEPENDS += "python3-pip python3-pbr"
PYPI_PACKAGE = "ecdsa"
-SRC_URI[sha256sum] = "8f12ac317f8a1318efa75757ef0a651abe12e51fc1af8838fb91079445227277"
+SRC_URI[md5sum] = "d593df1ab57da611dca76f7328c47b21"
+SRC_URI[sha256sum] = "494c6a853e9ed2e9be33d160b41d47afc50a6629b993d2b9c5ad7bb226add892"
inherit pypi setuptools3