Re: [Cryptography-dev] Interested in your CI Experience

2016-12-12 Thread Augustina Ragwitz
Thanks so much for the detailed response!! I will check out your TravisCI and Jenkins setup and follow up with further questions. Again, I really appreciate your time and look forward to hopefully working with you all more! Augustina ___ Cryptography-de

[Cryptography-dev] PyCA/cryptography 1.7 released

2016-12-12 Thread Paul Kehrer
PyCA cryptography 1.7 has been released to PyPI. cryptography is a package which provides cryptographic recipes and primitives to Python developers. Our goal is for it to be your "cryptographic standard library". We support Python 2.6-2.7, Python 3.3+, and PyPy. Changelog (https://cryptography.io/

Re: [Cryptography-dev] Generating deterministic ECDSA signatures

2016-12-12 Thread Alex Gaynor
Hi Eran, At the moment, no. Right now we simply use whatever OpenSSL does for generating `k`. Alex On Mon, Dec 12, 2016 at 6:43 AM, Eran Messeri via Cryptography-dev < cryptography-dev@python.org> wrote: > Hi, > > Is there a way to generate deterministic ECDSA signatures? > With the following c

[Cryptography-dev] Generating deterministic ECDSA signatures

2016-12-12 Thread Eran Messeri via Cryptography-dev
Hi, Is there a way to generate deterministic ECDSA signatures? With the following code I get a different signature each time: eckey = default_backend().load_pem_private_key(pkey_pem, password=None) eckey.sign('test', ec.ECDSA(hashes.SHA256())) But to implement signing code compliant with RFC6962-