aboutsummaryrefslogtreecommitdiffstats
path: root/src/cryptography/hazmat/primitives/serialization/ssh.py
Commit message (Collapse)AuthorAgeFilesLines
* support ed25519 openssh public keys (#4785)Paul Kehrer2019-02-271-1/+12
| | | | | | * support ed25519 openssh public keys * don't need this check
* Compressed point support (#4629)Paul Kehrer2018-12-111-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | * compressed point support * refactor to use oct2point directly * small docs change * remove deprecation for the moment and a bit of review feedback * no backend arg, implicitly import it * missed a spot * double oops * remove superfluous call * use refactored method * use vector file * one last item
* Move SSH serialization to it's own file (#4607)Alex Gaynor2018-11-241-0/+143
* Move SSH serialization to it's own file * flake8