summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-pkcs11.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* sync ssh-keysign, ssh-keygen and some dependencies to the newdjm2015-01-151-2/+2
| | | | buffer/key API; mostly mechanical, ok markus@
* make compiling against OpenSSL optional (make OPENSSL=no);markus2014-04-291-1/+5
| | | | | reduces algorithms to curve25519, aes-ctr, chacha, ed25519; allows us to explore further options; with and ok djm
* Add $OpenBSD$ tags in comments, our portable-syncing scripts use thesedjm2010-02-241-0/+1
|
* replace our obsolete smartcard code with PKCS#11.markus2010-02-081-0/+19
ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs-11v2-20.pdf ssh(1) and ssh-keygen(1) use dlopen(3) directly to talk to a PKCS#11 provider (shared library) while ssh-agent(1) delegates PKCS#11 to a forked a ssh-pkcs11-helper process. PKCS#11 is currently a compile time option. feedback and ok djm@; inspired by patches from Alon Bar-Lev