|
Lines 3044-3052
usage(void)
Link Here
|
| 3044 |
"usage: ssh-keygen [-q] [-a rounds] [-b bits] [-C comment] [-f output_keyfile]\n" |
3044 |
"usage: ssh-keygen [-q] [-a rounds] [-b bits] [-C comment] [-f output_keyfile]\n" |
| 3045 |
" [-m format] [-N new_passphrase] [-O option]\n" |
3045 |
" [-m format] [-N new_passphrase] [-O option]\n" |
| 3046 |
" [-t dsa | ecdsa | ecdsa-sk | ed25519 | ed25519-sk | rsa]\n" |
3046 |
" [-t dsa | ecdsa | ecdsa-sk | ed25519 | ed25519-sk | rsa]\n" |
| 3047 |
" [-w provider]\n" |
3047 |
" [-w provider] [-Z cipher]\n" |
| 3048 |
" ssh-keygen -p [-a rounds] [-f keyfile] [-m format] [-N new_passphrase]\n" |
3048 |
" ssh-keygen -p [-a rounds] [-f keyfile] [-m format] [-N new_passphrase]\n" |
| 3049 |
" [-P old_passphrase]\n" |
3049 |
" [-P old_passphrase] [-z cipher]\n" |
| 3050 |
" ssh-keygen -i [-f input_keyfile] [-m key_format]\n" |
3050 |
" ssh-keygen -i [-f input_keyfile] [-m key_format]\n" |
| 3051 |
" ssh-keygen -e [-f input_keyfile] [-m key_format]\n" |
3051 |
" ssh-keygen -e [-f input_keyfile] [-m key_format]\n" |
| 3052 |
" ssh-keygen -y [-f input_keyfile]\n" |
3052 |
" ssh-keygen -y [-f input_keyfile]\n" |
|
Lines 3234-3239
main(int argc, char **argv)
Link Here
|
| 3234 |
break; |
3234 |
break; |
| 3235 |
case 'Z': |
3235 |
case 'Z': |
| 3236 |
openssh_format_cipher = optarg; |
3236 |
openssh_format_cipher = optarg; |
|
|
3237 |
if (cipher_by_name(openssh_format_cipher) == NULL) |
| 3238 |
fatal("Invalid OpenSSH-format cipher '%s'", |
| 3239 |
openssh_format_cipher); |
| 3237 |
break; |
3240 |
break; |
| 3238 |
case 'C': |
3241 |
case 'C': |
| 3239 |
identity_comment = optarg; |
3242 |
identity_comment = optarg; |