1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-05-28 15:24:49 -05:00

Couple of bits missing from the command-line help.

[originally from svn r3765]
This commit is contained in:
Simon Tatham 2004-01-23 13:21:17 +00:00
parent 2d1287b9ca
commit 509e84ed77

View File

@ -103,7 +103,8 @@ void usage(void)
fprintf(stderr,
"Usage: puttygen ( keyfile | -t type [ -b bits ] )\n"
" [ -C comment ] [ -P ]\n"
" [ -o output-keyfile ] [ -O type ]\n");
" [ -o output-keyfile ] [ -O type | -l | -L"
" | -p ]\n");
}
void help(void)
@ -116,6 +117,7 @@ void help(void)
usage();
fprintf(stderr,
" -t specify key type when generating (rsa, dsa, rsa1)\n"
" -b specify number of bits when generating key\n"
" -C change or specify key comment\n"
" -P change key passphrase\n"
" -O specify output type:\n"
@ -125,6 +127,7 @@ void help(void)
" public standard / ssh.com public key\n"
" public-openssh OpenSSH public key\n"
" fingerprint output the key fingerprint\n"
" -o specify output file\n"
" -l equivalent to `-O fingerprint'\n"
" -L equivalent to `-O public-openssh'\n"
" -p equivalent to `-O public'\n"