Alicja Kario
Alicja Kario
[SEC 1 v2.0](http://www.secg.org/sec1-v2.pdf) specifies ECDSA-Sig-Value structure with 4 values, not two, and one alternative formatting: * ECDSA-Sig-Value with a or y elements * ECDSA-Full-R structure add support for creating those...
related to #131 0.14.1: With just 20 mutants executed in 25 minutes, it's not really useful (the confidence interval is way too large) 0.15-beta (8deb089e7d): Single test suite execution takes...
the PRNG generates a different keystream on Py2 than it does on Python3, as such methods like `randrange_from_seed__trytryagain` are not constant over python versions
While blinding in ECC is not really practical for performance applications, it would be a good teaching opportunity to show how blinding can be performed in ECDSA signatures. the new...
The default curve is `prime192v1` - weak, and deprecated/unusable in TLS 1.3 The default hash is `sha1` - similarly, weak and deprecated/unusable in TLS 1.3 The library should default to...
The public keys are not usually distributed as bare RFC5912 ASN.1 objects but rather as X.509 certificates. Add support for parsing certificates (in PEM and DER format) to VerifyingKey. see...
I've recently merged a faster implementation of elliptic curve arithmetic to python-ecdsa (https://github.com/warner/python-ecdsa/pull/127) and was trying to compare performance with this library, but I'm getting some silly numbers. (after running...
I've recently migrated from travis to github actions, and while most of the stuff works, the code coverage for PRs coming from forks doesn't. This is because the `CC_TEST_REPORTER_ID` is...
Crypto.Cipher.PKCS1_v1_5 is most likely vulnerable to a timing variant of the Bleichenbacher attack
(I haven't found a security policy suggesting submission of security bugs should happen in a specific way so I'm posting a regular issue) The code in PKCS#1 v1.5 is most...
fixes #13421 The code is functional (behaves the same as the implementation in NSS and tlslite-ng). We need to decide if we want to cache the `d_hash` value or not....