summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-keygen.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* increase default rsa/dsa key length from 1024 to 2048 bits; ok markus@ deraadt@djm2005-06-081-2/+2
|
* uint32_t -> u_int32_t for consistency; ok djm@dtucker2005-05-261-2/+2
|
* some style nits from dmiller@, and use a fatal() instead of a printf()/exitavsm2005-05-241-7/+6
|
* - removes signed/unsigned comparisons in moduli generationavsm2005-05-231-16/+30
| | | | | - use strtonum instead of atoi where its easier - check some strlcpy overflow and fatal instead of truncate
* sync and sort usage(). ok jmc@ markus@otto2005-04-051-13/+20
|
* typo, missing \n; mpechmarkus2005-03-111-2/+2
|
* spacingderaadt2005-03-101-2/+2
|
* ignore hostnames with metachars when hashing; ok deraadt@djm2005-03-021-3/+10
|
* add tools for managing known_hosts files with hashed hostnames, includingdjm2005-03-011-10/+218
| | | | hashing existing files and deleting hosts by name; ok markus@ deraadt@
* leak; from mpechmarkus2004-12-231-1/+2
|
* spacesderaadt2004-07-111-2/+2
|
* make ssh -Wshadow clean, no functional changesavsm2004-06-211-5/+5
| | | | markus@ ok
* zap another tiny header; ok deraadt@djm2004-05-091-11/+5
|
* kill a tiny header; ok deraadt@djm2004-05-081-2/+2
|
* tidy up moduli generation debugging, add -v (verbose/debug) option todjm2003-12-221-2/+16
| | | | ssh-keygen; ok markus@
* consistency PATH_MAX -> MAXPATHLEN; ok markus@djm2003-11-231-2/+2
|
* 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
|