Deleted Added
full compact
ssh-keygen.0 (239844) ssh-keygen.0 (239849)
1SSH-KEYGEN(1) OpenBSD Reference Manual SSH-KEYGEN(1)
2
3NAME
4 ssh-keygen - authentication key generation, management and conversion
5
6SYNOPSIS
7 ssh-keygen [-q] [-b bits] -t type [-N new_passphrase] [-C comment]
8 [-f output_keyfile]

--- 5 unchanged lines hidden (view full) ---

14 ssh-keygen -l [-f input_keyfile]
15 ssh-keygen -B [-f input_keyfile]
16 ssh-keygen -D pkcs11
17 ssh-keygen -F hostname [-f known_hosts_file] [-l]
18 ssh-keygen -H [-f known_hosts_file]
19 ssh-keygen -R hostname [-f known_hosts_file]
20 ssh-keygen -r hostname [-f input_keyfile] [-g]
21 ssh-keygen -G output_file [-v] [-b bits] [-M memory] [-S start_point]
1SSH-KEYGEN(1) OpenBSD Reference Manual SSH-KEYGEN(1)
2
3NAME
4 ssh-keygen - authentication key generation, management and conversion
5
6SYNOPSIS
7 ssh-keygen [-q] [-b bits] -t type [-N new_passphrase] [-C comment]
8 [-f output_keyfile]

--- 5 unchanged lines hidden (view full) ---

14 ssh-keygen -l [-f input_keyfile]
15 ssh-keygen -B [-f input_keyfile]
16 ssh-keygen -D pkcs11
17 ssh-keygen -F hostname [-f known_hosts_file] [-l]
18 ssh-keygen -H [-f known_hosts_file]
19 ssh-keygen -R hostname [-f known_hosts_file]
20 ssh-keygen -r hostname [-f input_keyfile] [-g]
21 ssh-keygen -G output_file [-v] [-b bits] [-M memory] [-S start_point]
22 ssh-keygen -T output_file -f input_file [-v] [-a num_trials] [-K checkpt]
23 [-W generator]
22 ssh-keygen -T output_file -f input_file [-v] [-a num_trials]
23 [-J num_lines] [-j start_line] [-K checkpt] [-W generator]
24 ssh-keygen -s ca_key -I certificate_identity [-h] [-n principals]
25 [-O option] [-V validity_interval] [-z serial_number] file ...
26 ssh-keygen -L [-f input_keyfile]
27 ssh-keygen -A
28
29DESCRIPTION
30 ssh-keygen generates, manages and converts authentication keys for
31 ssh(1). ssh-keygen can create RSA keys for use by SSH protocol version 1

--- 114 unchanged lines hidden (view full) ---

146 -I certificate_identity
147 Specify the key identity when signing a public key. Please see
148 the CERTIFICATES section for details.
149
150 -i This option will read an unencrypted private (or public) key file
151 in the format specified by the -m option and print an OpenSSH
152 compatible private (or public) key to stdout.
153
24 ssh-keygen -s ca_key -I certificate_identity [-h] [-n principals]
25 [-O option] [-V validity_interval] [-z serial_number] file ...
26 ssh-keygen -L [-f input_keyfile]
27 ssh-keygen -A
28
29DESCRIPTION
30 ssh-keygen generates, manages and converts authentication keys for
31 ssh(1). ssh-keygen can create RSA keys for use by SSH protocol version 1

--- 114 unchanged lines hidden (view full) ---

146 -I certificate_identity
147 Specify the key identity when signing a public key. Please see
148 the CERTIFICATES section for details.
149
150 -i This option will read an unencrypted private (or public) key file
151 in the format specified by the -m option and print an OpenSSH
152 compatible private (or public) key to stdout.
153
154 -J num_lines
155 Exit after screening the specified number of lines while
156 performing DH candidate screening using the -T option.
157
158 -j start_line
159 Start screening at the specified line number while performing DH
160 candidate screening using the -T option.
161
154 -K checkpt
155 Write the last line processed to the file checkpt while
156 performing DH candidate screening using the -T option. This will
157 be used to skip lines in the input file that have already been
158 processed if the job is restarted. This option allows importing
159 keys from other software, including several commercial SSH
160 implementations. The default import format is ``RFC4716''.
161

--- 162 unchanged lines hidden (view full) ---

324 length of the primes may be specified by the -b option. For example:
325
326 # ssh-keygen -G moduli-2048.candidates -b 2048
327
328 By default, the search for primes begins at a random point in the desired
329 length range. This may be overridden using the -S option, which
330 specifies a different start point (in hex).
331
162 -K checkpt
163 Write the last line processed to the file checkpt while
164 performing DH candidate screening using the -T option. This will
165 be used to skip lines in the input file that have already been
166 processed if the job is restarted. This option allows importing
167 keys from other software, including several commercial SSH
168 implementations. The default import format is ``RFC4716''.
169

--- 162 unchanged lines hidden (view full) ---

332 length of the primes may be specified by the -b option. For example:
333
334 # ssh-keygen -G moduli-2048.candidates -b 2048
335
336 By default, the search for primes begins at a random point in the desired
337 length range. This may be overridden using the -S option, which
338 specifies a different start point (in hex).
339
332 Once a set of candidates have been generated, they must be tested for
340 Once a set of candidates have been generated, they must be screened for
333 suitability. This may be performed using the -T option. In this mode
334 ssh-keygen will read candidates from standard input (or a file specified
335 using the -f option). For example:
336
337 # ssh-keygen -T moduli-2048 -f moduli-2048.candidates
338
339 By default, each candidate will be subjected to 100 primality tests.
340 This may be overridden using the -a option. The DH generator value will

--- 111 unchanged lines hidden (view full) ---

452
453AUTHORS
454 OpenSSH is a derivative of the original and free ssh 1.2.12 release by
455 Tatu Ylonen. Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos, Theo
456 de Raadt and Dug Song removed many bugs, re-added newer features and
457 created OpenSSH. Markus Friedl contributed the support for SSH protocol
458 versions 1.5 and 2.0.
459
341 suitability. This may be performed using the -T option. In this mode
342 ssh-keygen will read candidates from standard input (or a file specified
343 using the -f option). For example:
344
345 # ssh-keygen -T moduli-2048 -f moduli-2048.candidates
346
347 By default, each candidate will be subjected to 100 primality tests.
348 This may be overridden using the -a option. The DH generator value will

--- 111 unchanged lines hidden (view full) ---

460
461AUTHORS
462 OpenSSH is a derivative of the original and free ssh 1.2.12 release by
463 Tatu Ylonen. Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos, Theo
464 de Raadt and Dug Song removed many bugs, re-added newer features and
465 created OpenSSH. Markus Friedl contributed the support for SSH protocol
466 versions 1.5 and 2.0.
467
460OpenBSD 5.0 October 16, 2011 OpenBSD 5.0
468OpenBSD 5.2 July 6, 2012 OpenBSD 5.2