aboutsummaryrefslogtreecommitdiffstats
path: root/src/cryptography/hazmat/backends/openssl/ed25519.py
Commit message (Collapse)AuthorAgeFilesLines
* Cleanup serialize (#5149)Marko Kreen2020-05-251-18/+1
| | | | | | | | | | | | | | * Additional tests for public/private_bytes They expose few places that raise TypeError and AssertionError! before, and ValueError later. * Cleanup of private_bytes() backend Also pass key itself down to backend. * Cleanup of public_bytes() backend * Test handling of unsupported key type
* be clear that NoEncryption must be an instance in the exception (#4985)Paul Kehrer2019-09-071-1/+1
|
* support ed25519 openssh public keys (#4785)Paul Kehrer2019-02-271-4/+1
| | | | | | * support ed25519 openssh public keys * don't need this check
* ed25519 support (#4114)Paul Kehrer2019-02-261-0/+154
* ed25519 support * review feedback