summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-add.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Cast lifetime to u_long for comparison to prevent unsigned comparisondtucker2020-03-161-2/+2
* change explicit_bzero();free() to freezero()jsg2020-02-261-7/+4
* Ensure that the key lifetime provided fits within the values allowed bydtucker2020-02-181-6/+7
* Replace "security key" with "authenticator" in program messages.naddy2020-02-061-4/+4
* factor out reading/writing sshbufs to dedicated functions;djm2020-01-251-4/+2
* Document loading of resident keys from a FIDO authenticator.naddy2020-01-171-25/+15
* Extends the SK API to accept a set of key/value options for alldjm2020-01-061-2/+3
* implement loading resident keys in ssh-adddjm2019-12-301-5/+63
* Add new structure for signature optionsdjm2019-11-251-2/+2
* additional missing stdarg.h includes when built without WITH_OPENSSL; ok djm@naddy2019-11-181-1/+2
* directly support U2F/FIDO2 security keys in OpenSSH by linkingdjm2019-11-141-1/+4
* enable ed25519 support; ok djmmarkus2019-11-121-2/+3
* ssh-add support for U2F/FIDO keysdjm2019-10-311-10/+27
* add new agent key constraint for U2F/FIDO providerdjm2019-10-311-3/+3
* fixes for !WITH_OPENSSL compilation; ok dtucker@djm2019-09-061-2/+5
* When system calls indicate an error they return -1, not some arbitraryderaadt2019-06-281-3/+3
* Replace calls to ssh_malloc_init() by a static init of malloc_options.otto2019-06-061-2/+1
* add "-v" flags to ssh-add and ssh-pkcs11-helper to turn up debugdjm2019-01-211-2/+14
* add option to test whether keys in an agent are usable, by performingdjm2019-01-201-3/+49
* Make "ssh-add -q" do what it says on the tin: silence output fromdjm2018-09-191-23/+39
* Add experimental support for PQC XMSS keys (Extended Hash-Based Signatures)markus2018-02-231-5/+69
* add a -q option to ssh-add to make it quiet on success.dlg2017-08-291-13/+23
* remove post-SSHv1 removal dead code from rsa.c and merge thedjm2017-07-011-2/+1
* remove unused wrapper functions from key.[ch]; ok djm@markus2017-05-301-2/+2
* more simplification and removal of SSHv1-related code; ok djm@naddy2017-05-051-36/+26
* since a couple of people have asked, leave a comment explaining why wedjm2017-05-041-1/+6
* unifdef WITH_SSH1djm2017-04-301-8/+1
* Add a function to enable security-related malloc_options. With and okdtucker2016-02-151-1/+2
* Remove NULL-checks before sshkey_free().mmcc2015-12-111-5/+3
* fix some signed/unsigned integer type mismatches in formatdjm2015-10-151-2/+2
* - Fix error message: passphrase needs to be at least 5 characters, not 4.tim2015-09-131-7/+6
* When adding keys to the agent, don't ignore the comment of keys for which thetim2015-09-131-9/+8
* delete support for legacy v00 certificates; "sure" markus@ dtucker@djm2015-07-031-3/+2
* don't try to load .ssh/identity by default if SSH1 is disabled; ok markus@naddy2015-03-261-1/+3
* ignore v1 errors on ssh-add -D; only try v2 keys on -l/-L (unless WITH_SSH1)markus2015-03-251-7/+11
* make "ssh-add -d" properly remove a corresponding certificate, and alsohalex2015-02-211-4/+10
* slightly extend the passphrase prompt if running with -c in order tohalex2015-02-031-4/+5
* update to new API (key_fingerprint => sshkey_fingerprint)djm2015-01-281-2/+3
* Replace <sys/param.h> with <limits.h> and other less dirty headers wherederaadt2015-01-161-3/+3
* move authfd.c and its tentacles to the new buffer/key API;djm2015-01-141-108/+151
* Add FingerprintHash option to control algorithm used for keydjm2014-12-211-13/+41
* Prefer setvbuf() to setlinebuf() for portability; ok deraadt@millert2014-11-261-2/+2
* fix ssh-add crash while loading more than one keybenno2014-07-091-3/+3
* make stdout line-buffered; saves partial output getting lost whendjm2014-07-031-1/+3
* fix loading of private keysmarkus2014-06-271-5/+5
* New key API: refactor key-related functions to be more library-like,djm2014-06-241-7/+17
* convert memset of potentially-private data to explicit_bzero()djm2014-02-021-4/+4
* skip requesting smartcard PIN when removing keys from agent; bz#2187djm2013-12-191-6/+9
* Make ssh-add also add .ssh/id_ed25519; fixes lie in manual page.pascal2013-12-151-1/+2
* bye, bye xfree(); ok markus@djm2013-05-171-10/+10