summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-ecdsa-sk.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* some clarifying commentsdjm2020-06-221-2/+9
|
* Add support for FIDO webauthn (verification only). webauthn is adjm2020-06-221-5/+101
| | | | | | standard for using FIDO keys in web browsers. webauthn signatures are a slightly different format to plain FIDO signatures - this support allows verification of these. Feedback and ok markus@
* refactor ECDSA-SK verification a little ahead of adding supportdjm2020-06-221-21/+23
| | | | for FIDO webauthn signature verification support; ok markus@
* more debugging; behind DEBUG_SKdjm2019-11-261-1/+5
|
* Add new structure for signature optionsdjm2019-11-251-3/+18
| | | | | | | | | This is populated during signature verification with additional fields that are present in and covered by the signature. At the moment, it is only used to record security key-specific options, especially the flags field. with and ok markus@
* memleak in error pathdjm2019-11-251-3/+5
|
* adjust on-wire signature encoding for ecdsa-sk keys to better matchdjm2019-11-191-5/+5
| | | | | | | ec25519-sk keys. Discussed with markus@ and Sebastian Kinne NB. if you are depending on security keys (already?) then make sure you update both your clients and servers.
* Initial infrastructure for U2F/FIDO supportdjm2019-10-311-0/+178
Key library support: including allocation, marshalling public/private keys and certificates, signature validation. feedback & ok markus@