summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/ssh-keygen.c
AgeCommit message (Expand)Author
2020-04-03give ssh-keygen the ability to dump the contents of a binary keyDamien Miller
2020-03-13spelling errors in comments; no code changeDamien Miller
2020-03-13when downloading FIDO2 resident keys from a token, don't prompt for a PINDamien Miller
2020-03-06fix use-after-free in do_download_sk; ok djmMarkus Friedl
2020-03-06exit if ssh_krl_revoke_key_sha256 fails; ok djmMarkus Friedl
2020-02-28no-touch-required certificate option should be an extension, notDamien Miller
2020-02-26change explicit_bzero();free() to freezero()Jonathan Gray
2020-02-07fix two PIN entry bugs on FIDO keygen: 1) it would allow more than theDamien Miller
2020-02-06Replace "security key" with "authenticator" in program messages.Christian Weisgerber
2020-02-04require FIDO application strings to start with "ssh:"; ok markus@Damien Miller
2020-01-28changes to support FIDO attestationDamien Miller
2020-01-25improve the error message for u2f enrollment errors by makingDamien Miller
2020-01-25factor out reading/writing sshbufs to dedicated functions;Damien Miller
2020-01-25expose PKCS#11 key labels/X.509 subjects as commentsDamien Miller
2020-01-24minor tweaks to ssh-keygen -Y find-principals:Damien Miller
2020-01-24when signing a certificate with an RSA key, default to a safe signatureDamien Miller
2020-01-24allow PEM export of DSA and ECDSA keys; bz3091, patch from Jakub JelenDamien Miller
2020-01-23ssh-keygen -Y find-principals fixes based on feedback from Markus:Damien Miller
2020-01-23remove trailing period characters from pub/priv key pathnames -Damien Miller
2020-01-23add a new signature operations "find-principal" to look up theDamien Miller
2020-01-22For ssh-keygen -lF only add a space after key fingerprint when there is aClaudio Jeker
2020-01-21don't #ifdef out the KRL code when compiling without libcryptoDamien Miller
2020-01-14sync ssh-keygen.1 and ssh-keygen's usage() with each other and realityChristian Weisgerber
2020-01-06Extends the SK API to accept a set of key/value options for allDamien Miller
2020-01-02ability to download FIDO2 resident keys from a token viaDamien Miller
2019-12-30Remove the -x option currently used for FIDO/U2F-specific key flags.Damien Miller
2019-12-30translate and return error codes; retry on bad PINDamien Miller
2019-12-30SK API and sk-helper error/PIN passingDamien Miller
2019-12-30basic support for generating FIDO2 resident keysDamien Miller
2019-12-30remove single-letter flags for moduli optionsDamien Miller
2019-12-30prepare for use of ssh-keygen -O flag beyond certsDamien Miller
2019-12-10when acting as a CA and using a security key as the CA key, remind theDamien Miller
2019-11-25Print a key touch reminder when generating a security key. Most keysDamien Miller
2019-11-25allow "ssh-keygen -x no-touch-required" when generating a security keyDamien Miller
2019-11-25add a "no-touch-required" option for authorized_keys and a similarDamien Miller
2019-11-25Add new structure for signature optionsDamien Miller
2019-11-18more missing mentions of ed25519-sk; ok djm@Christian Weisgerber
2019-11-18additional missing stdarg.h includes when built without WITH_OPENSSL; ok djm@Christian Weisgerber
2019-11-18Fix incorrect error message when key certification failsDamien Miller
2019-11-18allow *-sk key types to be turned into certificatesDamien Miller
2019-11-18missing break in getopt switch; spotted by Sebastian KinneDamien Miller
2019-11-14directly support U2F/FIDO2 security keys in OpenSSH by linkingDamien Miller
2019-11-12security keys typically need to be tapped/touched in order to performDamien Miller
2019-11-12enable ed25519 support; ok djmMarkus Friedl
2019-11-08duplicate 'x' character in getopt(3) optstringDamien Miller
2019-11-07Fill in missing man page bits for U2F security key support:Christian Weisgerber
2019-10-31fix -Wshadow warningDamien Miller
2019-10-31Refactor signing - use sshkey_sign for everything, including the newDamien Miller
2019-10-31ssh-keygen support for generating U2F/FIDO keysDamien Miller
2019-10-16free buf before return; reported by krishnaiah bommuDamien Miller