Re: [Cryptography-dev] Support for ED25519?

2017-01-16 Thread Paul Kehrer
We plan to add support for ed25519 as soon as there is an OpenSSL release that supports it. That may be 1.1.1, but it hasn't landed yet. -Paul Kehrer (reaperhulk) On January 16, 2017 at 11:33:27 AM, Jesus Cea ([email protected]) wrote: Any plan to support ED25519 Elliptic Curve signatures?

Re: [Cryptography-dev] Support for ED25519?

2017-01-16 Thread Alex Gaynor
If you'd like ed25519 from a supported library today, pyncal has it. On Mon, Jan 16, 2017 at 8:55 PM, Paul Kehrer wrote: > We plan to add support for ed25519 as soon as there is an OpenSSL release > that supports it. That may be 1.1.1, but it hasn't landed yet. > > -Paul Kehrer (reaperhulk) > >

Re: [Cryptography-dev] Support for ED25519?

2017-01-16 Thread Ron Frederick
I’m getting ed25519 from libsodium through Python’s libnacl plus a few declarations of my own. One nice thing about libnacl is that it has no corresponding C bindings in it. It’s pure Python + ctypes wrapped around the standard libsodium.so/dll. On Jan 16, 2017, at 6:00 PM, Alex Gaynor wrote:

Re: [Cryptography-dev] Support for ED25519?

2017-01-16 Thread Jesus Cea
On 17/01/17 04:29, Ron Frederick wrote: > I’m getting ed25519 from libsodium through Python’s libnacl plus a few > declarations of my own. One nice thing about libnacl is that it has no > corresponding C bindings in it. It’s pure Python + ctypes wrapped around > the standard libsodium.so/dll. I do