summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-keygen.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* unexpand and delete whitespace at EOL; ok markus@djm2003-11-211-5/+5
|
* include SSHFP lookup code (not enabled by default). ok markus@jakob2003-10-141-11/+1
|
* A few signedness fixes for harmless situations; markus@ okmiod2003-09-181-3/+3
|
* exit after primetest, ok djm@markus2003-08-141-1/+2
|
* Support for generating Diffie-Hellman groups (/etc/moduli) from ssh-keygen.djm2003-07-281-4/+81
| | | | | Based on code from Phil Karn, William Allen Simpson and Niels Provos. ok markus@, thanks jmc@
* avoid warning; ok jakob@djm2003-05-151-1/+4
|
* add experimental support for verifying hos keys using DNS as describedjakob2003-05-141-2/+53
| | | | | in draft-ietf-secsh-dns-xx.txt. more information in README.dns. ok markus@ and henning@
* change key_load_public to try to read a public from:markus2003-05-111-1/+5
| | | | | | rsa1 private or rsa1 public and ssh2 keys. this makes ssh-keygen -e fail for ssh1 keys more gracefully for example; report from itojun (netbsd pr 20550).
* rename log() into logit() to avoid name conflict. markus ok, from netbsditojun2003-04-081-2/+2
|
* Remove unnecessary fflush(stderr) calls, stderr is unbuffered by default.wcobb2002-11-261-2/+1
| | | | ok markus@
* u_int stuffderaadt2002-06-231-5/+6
|
* KNF done automatically while reading....deraadt2002-06-191-2/+2
|
* use tab not spaces (|unexpand)markus2002-06-091-2/+2
|
* try to import keys with extra trailing === (seen with ssh.com < 2.0.12)markus2002-03-271-1/+8
|
* change sc_get_key to sc_get_keys and hide smartcard details in scard.cmarkus2002-03-251-7/+11
|
* Add PIN-protection for secret key.rees2002-03-211-2/+2
|
* move key upload to scard.[ch]markus2002-03-211-115/+11
|
* more u_* fixesmarkus2002-02-251-2/+2
|
* signed vs. unsigned: make size arguments u_int, ok stevesk@markus2002-02-241-2/+2
|
* default to rsa keyfile path for non key generation operations wherestevesk2002-02-161-15/+19
| | | | keyfile not specified. fixes core dump in those cases. ok markus@
* unneeded cast cleanup; ok markus@stevesk2002-01-181-2/+2
|
* append \n only for public keysmarkus2002-01-091-2/+3
|
* remove unneeded casts and some char->u_char cleanup; ok markus@stevesk2001-12-291-2/+2
|
* -t is only needed for key generation (unbreaks -i, -e, etc).markus2001-12-271-5/+5
|
* Remove default (rsa1) key type; ok markus@djm2001-12-211-4/+7
|
* basic KNF done while i was looking for something elsederaadt2001-12-191-3/+3
|
* minor KNFderaadt2001-12-051-3/+3
|
* enum/int type cleanup where it made sense to do so; ok markus@stevesk2001-11-171-2/+4
|
* better docu for fingerprinting, ok deraadt@markus2001-10-251-2/+2
|
* bzero private key after loading to smartcard; ok markus@djm2001-09-281-1/+9
|
* better error handling if you try to export a bad key to ssh.commarkus2001-09-171-2/+5
|
* u_char*/char* cleanup; ok markus@stevesk2001-09-171-3/+3
|
* clean up some /* SMARTCARD */. ok markus@jakob2001-08-021-2/+2
|
* add /* SMARTCARD */ to #else/#endif. ok markus@jakob2001-08-021-5/+5
|
* more verbose usage(). ok markus@jakob2001-08-021-3/+22
|
* change -u (upload smartcard key) to -U. ok markus@jakob2001-08-021-3/+3
|
* add -D readerid option (download, i.e. print public RSA key to stdout).markus2001-08-021-14/+41
| | | | | check for card present when uploading keys. use strings instead of ints for smartcard reader ids, too.
* allow uploading RSA keys for non-default AUT0 (sha1 over passphrase like sectok).markus2001-08-011-12/+37
|
* Inquire Cyberflex class for 0xf0 cardsrees2001-07-261-4/+3
| | | | | change aid to conform to 7816-5 remove gratuitous fid selects
* update for sectok.h interface changes.markus2001-07-021-19/+20
| | | | improve error handling.
* initialize earlymarkus2001-06-291-3/+3
|
* new error handling for cyberflex_*markus2001-06-291-7/+17
|
* '\0' terminated data[] is ok; ok markus@stevesk2001-06-281-2/+2
|
* s/generate_additional_parameters/rsa_generate_additional_parameters/markus2001-06-271-2/+2
| | | | http://www.humppa.com/
* use cyberflex_inq_class to inquire class.markus2001-06-271-5/+5
|
* allow loading a private RSA key to a cyberflex card.markus2001-06-261-19/+99
|
* switch to readpassphrase(3)markus2001-06-241-10/+22
| | | | 2.7/8-stable needs readpassphrase.[ch] from libc
* fix import for (broken?) ssh.com/f-secure private keysmarkus2001-06-231-11/+11
| | | | (i tested > 1000 RSA keys)
* more strict prototypes. raise warning level in Makefile.inc. markus ok'editojun2001-06-231-12/+12
| | | | TODO; cleanup headers
* try to decode ssh-3.0.0 private rsa keysmarkus2001-06-231-10/+21
| | | | (allow migration to openssh, not vice versa), #910