summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-keygen.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* use -P for -e and -y, too.markus2001-05-251-5/+8
|
* remove debugmarkus2001-04-231-3/+3
|
* allow public key for -e, toomarkus2001-04-231-9/+10
|
* style, noted by stevesk; sort flags in usagemarkus2001-04-221-2/+2
|
* rename arguments -x -> -e (export key), -X -> -i (import key)markus2001-04-221-3/+7
| | | | xref draft-ietf-secsh-publickeyfile-01.txt
* don't use errno for key_{load,save}_private; discussion w/ solar@openwallmarkus2001-04-151-7/+4
|
* fix whitespace: unexpand + trailing spaces.markus2001-04-051-2/+2
|
* free() -> xfree()stevesk2001-04-031-2/+2
|
* try to read private f-secure ssh v2 rsa keys.markus2001-03-261-18/+53
|
* simpler key load/save interface, see authfile.hmarkus2001-03-261-77/+56
|
* add -B flag to usagejakob2001-03-211-2/+2
|
* remove old key_fingerprint interface, s/_ex//markus2001-03-121-4/+6
|
* remove -v again. use -B instead for bubblebabble. make -B consistentmarkus2001-03-111-31/+20
| | | | with -l and make -B work with /path/to/known_hosts. ok deraadt@
* KNF, and SHA1 binary output is just creeping featurismderaadt2001-03-111-7/+5
|
* print both md5, sha1 and bubblebabble fingerprints when usingjakob2001-03-111-3/+27
| | | | ssh-keygen -l -v. ok markus@.
* create *.pub files with umask 0644, so that you can mv them to authorized_keysderaadt2001-03-091-12/+20
|
* bye bye -dderaadt2001-02-221-2/+2
|
* document -d, and -t defaults to rsa1deraadt2001-02-221-2/+3
|
* PermitRootLogin={yes,without-password,forced-commands-only,no}markus2001-02-121-1/+2
| | | | (before this change, root could login even if PermitRootLogin==no)
* unexpand and remove end-of-line whitespace; ok markus@stevesk2001-02-041-2/+2
|
* split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.markus2001-01-211-6/+3
| | | | rename util.[ch] -> misc.[ch]
* move ssh1 definitions to ssh1.h, pathnames to pathnames.hmarkus2001-01-191-5/+6
|
* getopt() returns -1 not EOF; stevesk@pobox.commarkus2001-01-131-2/+2
|
* enable 'ssh-keygen -l -f ~/.ssh/{authorized_keys,known_hosts}{,2}'markus2000-12-281-12/+16
|
* fix ssh-keygen -x -t type > file; from Roumen.Petrov@skalasoft.commarkus2000-12-221-3/+3
|
* replace 'unsigned bla' with 'u_bla' everywhere. also, replace 'char unsigned'markus2000-12-191-5/+5
| | | | with u_char.
* print keytype when generating a key.markus2000-11-251-18/+27
| | | | reasonable defaults for RSA1/RSA/DSA keys.
* Add missing \n at the end of an error message.millert2000-11-151-2/+2
|
* add support for RSA to SSH2. please test.markus2000-11-121-57/+58
| | | | | | | | | | | | | | | there are now 3 types of keys: RSA1 is used by ssh-1 only, RSA and DSA are used by SSH2. you can use 'ssh-keygen -t rsa -f ssh2_rsa_file' to generate RSA keys for SSH2 and use the RSA keys for hostkeys or for user keys. SSH2 RSA or DSA keys are added to .ssh/authorised_keys2 as before. IdentityFile2, HostDsaKey and DSAAuthentication are obsolete. you can use multiple IdentityFile and HostKey for all types of keys. the option DSAAuthentication is replaced by PubkeyAuthetication.
* -X now reads private ssh.com DSA keys, too.markus2000-10-091-11/+94
|
* cleanup copyright notices on all files. I have attempted to be accurate withderaadt2000-09-071-2/+7
| | | | | | | the details. everything is now under Tatu's licence (which I copied from his readme), and/or the core-sdi bsd-ish thing for deattack, or various openbsd developers under a 2-term bsd licence. We're not changing any rules, just being accurate.
* add SSH2/DSA support to the agent and some other DSA related cleanups.markus2000-08-191-12/+7
| | | | (note that we cannot talk to ssh.com's ssh2 agents)
* Always create ~/.ssh with mode 700; ok Markusdjm2000-07-151-2/+2
|
* clean code is good codetodd2000-07-071-3/+3
|
* OpenBSD tagmarkus2000-06-201-1/+1
|
* remove dependency on openssl-0.9.5a; green@FreeBSD.org via kris@FreeBSD.orgmarkus2000-05-301-2/+2
|
* handle escapes in real and original key format, ok millert@markus2000-05-081-4/+12
|
* simplify usagederaadt2000-05-031-3/+2
|
* default DSA key file ~/.ssh/id_dsamarkus2000-05-021-2/+3
|
* Put -d into usage and reorder. markus ok.hugh2000-05-011-2/+2
|
* xfree DSA blobsmarkus2000-04-271-1/+3
|
* add -R flag: exit code indicates if RSA is alivederaadt2000-04-261-2/+9
|
* add DSA pubkey auth and other SSH2 fixes. use ssh-keygen -[xX]markus2000-04-261-85/+256
| | | | | for trading keys with the real and the original SSH, directly from the people who invented the SSH protocol.
* whitespace cleanupmarkus2000-04-141-2/+2
|
* -pedantic: signed vs. unsigned, void*-arithm, etcmarkus2000-03-161-2/+3
|
* typomarkus2000-02-041-2/+2
|
* enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@markus2000-02-041-29/+65
|
* KNF, final part 3markus1999-11-241-37/+18
|
* much more KNFderaadt1999-11-241-21/+17
|
* KNF part 1markus1999-11-231-488/+441
|