summaryrefslogtreecommitdiff
path: root/ssh-keygen.c
AgeCommit message (Collapse)Author
2003-12-31 - djm@cvs.openbsd.org 2003/12/22 09:16:58Darren Tucker
[moduli.c ssh-keygen.1 ssh-keygen.c] tidy up moduli generation debugging, add -v (verbose/debug) option to ssh-keygen; ok markus@
2003-11-24 - djm@cvs.openbsd.org 2003/11/23 23:18:45Damien Miller
[ssh-keygen.c] consistency PATH_MAX -> MAXPATHLEN; ok markus@ (RCS ID sync only) - djm@cvs.openbsd.org 2003/11/23 23:21:21 [scp.c] from portable: rename clashing variable limit-> limit_rate; ok markus@ (RCS ID sync only)
2003-11-21more whitespace (tabs this time)Damien Miller
2003-11-21 - djm@cvs.openbsd.org 2003/11/21 11:57:03Damien Miller
[everything] unexpand and delete whitespace at EOL; ok markus@ (done locally and RCS IDs synced)
2003-10-15 - jakob@cvs.openbsd.org 2003/10/14 19:42:10Darren Tucker
[dns.c dns.h readconf.c ssh-keygen.c sshconnect.c] include SSHFP lookup code (not enabled by default). ok markus@
2003-09-22 - miod@cvs.openbsd.org 2003/09/18 13:02:21Darren Tucker
[authfd.c bufaux.c dh.c mac.c ssh-keygen.c] A few signedness fixes for harmless situations; markus@ ok
2003-09-08[ssh-keygen.c] s/PATH_MAX/MAXPATHLEN/ ok mouring@Tim Rice
2003-08-22 - (djm) s/get_progname/ssh_get_progname/g to avoid conflict with HeimdalDamien Miller
-lbroken; ok dtucker
2003-08-21 - markus@cvs.openbsd.org 2003/08/14 16:08:58Darren Tucker
[ssh-keygen.c] exit after primetest, ok djm@
2003-08-02 - djm@cvs.openbsd.org 2003/07/28 09:49:56Darren Tucker
[ssh-keygen.1 ssh-keygen.c] Support for generating Diffie-Hellman groups (/etc/moduli) from ssh-keygen. Based on code from Phil Karn, William Allen Simpson and Niels Provos. ok markus@, thanks jmc@
2003-05-15 - djm@cvs.openbsd.org 2003/05/15 03:10:52Damien Miller
[ssh-keygen.c] avoid warning; ok jakob@
2003-05-15 - jakob@cvs.openbsd.org 2003/05/14 18:16:20Damien Miller
[key.c key.h readconf.c readconf.h ssh_config.5 sshconnect.c] [dns.c dns.h README.dns ssh-keygen.1 ssh-keygen.c] add experimental support for verifying hos keys using DNS as described in draft-ietf-secsh-dns-xx.txt. more information in README.dns. ok markus@ and henning@
2003-05-14 - markus@cvs.openbsd.org 2003/05/11 16:56:48Damien Miller
[authfile.c ssh-keygen.c] change key_load_public to try to read a public from: 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).
2003-05-14 - (djm) RCSID sync w/ OpenBSDDamien Miller
2003-04-09*** empty log message ***Damien Miller
2002-12-23 - wcobb@cvs.openbsd.org 2002/11/26 00:45:03Ben Lindstrom
[scp.c ssh-keygen.c] Remove unnecessary fflush(stderr) calls, stderr is unbuffered by default. ok markus@
2002-07-20 - (stevesk) [ssh-keygen.c] bug #231: always init/seed_rng().Kevin Steves
2002-06-23 - deraadt@cvs.openbsd.org 2002/06/23 09:39:55Ben Lindstrom
[ssh-keygen.c] u_int stuff
2002-06-21 - deraadt@cvs.openbsd.org 2002/06/19 00:27:55Ben Lindstrom
[auth-bsdauth.c auth-skey.c auth1.c auth2-chall.c auth2-none.c authfd.c authfd.h monitor_wrap.c msg.c nchan.c radix.c readconf.c scp.c sftp.1 ssh-add.1 ssh-add.c ssh-agent.1 ssh-agent.c ssh-keygen.1 ssh-keygen.c ssh-keysign.c ssh.1 sshconnect.c sshconnect.h sshconnect2.c ttymodes.c xmalloc.h] KNF done automatically while reading....
2002-06-09 - (bal) RCSID tag updates on channels.c, clientloop.c, nchan.c,Ben Lindstrom
sftp-client.c, ssh-agenet.c, ssh-keygen.c and connect.h (we did unexpand independant of them)
2002-06-09unexpandBen Lindstrom
2002-04-02 - markus@cvs.openbsd.org 2002/03/27 22:21:45Ben Lindstrom
[ssh-keygen.c] try to import keys with extra trailing === (seen with ssh.com < 2.0.12)
2002-03-26 - markus@cvs.openbsd.org 2002/03/25 17:34:27Ben Lindstrom
[scard.c scard.h ssh-agent.c ssh-keygen.c ssh.c] change sc_get_key to sc_get_keys and hide smartcard details in scard.c
2002-03-22 - rees@cvs.openbsd.org 2002/03/21 21:54:34Ben Lindstrom
[scard.c scard.h ssh-keygen.c] Add PIN-protection for secret key.
2002-03-22 - markus@cvs.openbsd.org 2002/03/21 16:57:15Ben Lindstrom
[scard.c] remove const
2002-03-11 - (djm) ssh-keygen -i needs seeded RNG; report from markus@Damien Miller
2002-02-26 - markus@cvs.openbsd.org 2002/02/25 16:33:27Ben Lindstrom
[ssh-keygen.c sshconnect2.c uuencode.c uuencode.h] more u_* fixes
2002-02-26 - markus@cvs.openbsd.org 2002/02/24 19:14:59Ben Lindstrom
[auth2.c authfd.c authfd.h authfile.c kexdh.c kexgex.c key.c key.h ssh-dss.c ssh-dss.h ssh-keygen.c ssh-rsa.c ssh-rsa.h sshconnect2.c] signed vs. unsigned: make size arguments u_int, ok stevesk@
2002-02-19 - stevesk@cvs.openbsd.org 2002/02/16 20:40:08Damien Miller
[ssh-keygen.c] default to rsa keyfile path for non key generation operations where keyfile not specified. fixes core dump in those cases. ok markus@
2002-01-30 - (djm) Delay PRNG seeding until we need it in ssh-keygen, from markus@Damien Miller
2002-01-22 - stevesk@cvs.openbsd.org 2002/01/18 18:14:17Damien Miller
[authfd.c bufaux.c buffer.c cipher.c packet.c ssh-agent.c ssh-keygen.c] unneeded cast cleanup; ok markus@
2002-01-22 - markus@cvs.openbsd.org 2002/01/09 13:49:27Damien Miller
[ssh-keygen.c] append \n only for public keys
2002-01-22 - stevesk@cvs.openbsd.org 2001/12/29 21:56:01Damien Miller
[authfile.c channels.c compress.c packet.c sftp-server.c ssh-agent.c ssh-keygen.c] remove unneeded casts and some char->u_char cleanup; ok markus@
2002-01-22 - markus@cvs.openbsd.org 2001/12/27 18:10:29Damien Miller
[ssh-keygen.c] -t is only needed for key generation (unbreaks -i, -e, etc).
2002-01-22 - djm@cvs.openbsd.org 2001/12/21 08:52:22Damien Miller
[ssh-keygen.1 ssh-keygen.c] Remove default (rsa1) key type; ok markus@
2001-12-21 - deraadt@cvs.openbsd.org 2001/12/19 07:18:56Damien Miller
[auth1.c auth2.c auth2-chall.c auth-bsdauth.c auth.c authfile.c auth.h] [auth-krb4.c auth-rhosts.c auth-skey.c bufaux.c canohost.c channels.c] [cipher.c clientloop.c compat.c compress.c deattack.c key.c log.c mac.c] [match.c misc.c nchan.c packet.c readconf.c rijndael.c rijndael.h scard.c] [servconf.c servconf.h serverloop.c session.c sftp.c sftp-client.c] [sftp-glob.c sftp-int.c sftp-server.c ssh-add.c ssh-agent.c ssh.c] [sshconnect1.c sshconnect2.c sshconnect.c sshd.8 sshd.c sshd_config] [ssh-keygen.c sshlogin.c sshpty.c sshtty.c ttymodes.c uidswap.c] basic KNF done while i was looking for something else
2001-12-06 - deraadt@cvs.openbsd.org 2001/12/05 10:06:12Ben Lindstrom
[authfd.c authfile.c bufaux.c channels.c compat.c kex.c kexgex.c key.c misc.c packet.c servconf.c ssh-agent.c sshconnect2.c sshconnect.c sshd.c ssh-dss.c ssh-keygen.c ssh-rsa.c] minor KNF
2001-12-06 - stevesk@cvs.openbsd.org 2001/11/17 19:14:34Ben Lindstrom
[auth2.c auth.c readconf.c servconf.c ssh-agent.c ssh-keygen.c] enum/int type cleanup where it made sense to do so; ok markus@
2001-11-12 - markus@cvs.openbsd.org 2001/10/25 21:14:32Damien Miller
[ssh-keygen.1 ssh-keygen.c] better docu for fingerprinting, ok deraadt@
2001-10-03 - djm@cvs.openbsd.org 2001/09/28 12:07:09Ben Lindstrom
[ssh-keygen.c] bzero private key after loading to smartcard; ok markus@
2001-09-18 - markus@cvs.openbsd.org 2001/09/17 20:50:22Ben Lindstrom
[key.c ssh-keygen.c] better error handling if you try to export a bad key to ssh.com
2001-09-18 - stevesk@cvs.openbsd.org 2001/09/17 19:27:15Ben Lindstrom
[kexdh.c kexgex.c key.c key.h ssh-dss.c ssh-keygen.c ssh-rsa.c] u_char*/char* cleanup; ok markus
2001-08-06 - jakob@cvs.openbsd.org 2001/08/02 16:14:05Ben Lindstrom
[scard.c ssh-agent.c ssh.c ssh-keygen.c] clean up some /* SMARTCARD */. ok markus@
2001-08-06 - jakob@cvs.openbsd.org 2001/08/02 15:43:57Ben Lindstrom
[ssh-agent.c ssh.c ssh-keygen.c] add /* SMARTCARD */ to #else/#endif. ok markus@
2001-08-06 - jakob@cvs.openbsd.org 2001/08/02 15:06:52Ben Lindstrom
[ssh-keygen.c] more verbose usage(). ok markus@
2001-08-06 - jakob@cvs.openbsd.org 2001/08/02 08:58:35Ben Lindstrom
[ssh-keygen.c] change -u (upload smartcard key) to -U. ok markus@
2001-08-06 - markus@cvs.openbsd.org 2001/08/02 00:10:17Ben Lindstrom
[ssh-keygen.c] add -D readerid option (download, i.e. print public RSA key to stdout). check for card present when uploading keys. use strings instead of ints for smartcard reader ids, too.
2001-08-06 - markus@cvs.openbsd.org 2001/08/01 23:33:09Ben Lindstrom
[ssh-keygen.c] allow uploading RSA keys for non-default AUT0 (sha1 over passphrase like sectok).
2001-08-06 - rees@cvs.openbsd.org 2001/07/26 20:04:27Ben Lindstrom
[scard.c ssh-keygen.c] Inquire Cyberflex class for 0xf0 cards change aid to conform to 7816-5 remove gratuitous fid selects
2001-07-04 - markus@cvs.openbsd.org 2001/07/02 22:40:18Ben Lindstrom
[ssh-keygen.c] update for sectok.h interface changes.