summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-pkcs11-client.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* New key API: refactor key-related functions to be more library-like,djm2014-06-241-1/+3
| | | | | | | | | existing API is offered as a set of wrappers. with and ok markus@ Thanks also to Ben Hawkes, David Tomaschik, Ivan Fratric, Matthew Dempsky and Ron Bowes for a detailed review a few months ago.
* bye, bye xfree(); ok markus@djm2013-05-171-5/+5
|
* Fix a memory leak in pkcs11_rsa_private_encrypt(), reported by Jan Klemkow.miod2012-01-161-1/+3
| | | | | While there, be sure to buffer_clear() between send_msg() and recv_msg(). ok markus@
* 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/+229
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