diff options
Diffstat (limited to 'src/subcommands/mh/gen-key')
-rwxr-xr-x | src/subcommands/mh/gen-key | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/subcommands/mh/gen-key b/src/subcommands/mh/gen-key index 8558441..72b9138 100755 --- a/src/subcommands/mh/gen-key +++ b/src/subcommands/mh/gen-key @@ -10,6 +10,8 @@ # They are Copyright 2008, and are all released under the GPL, version 3 # or later. +gen_key() { + local keyType="RSA" local keyLength="2048" local keyUsage="auth" @@ -100,3 +102,5 @@ log info "SSH host public key in OpenPGP form: ${SYSDATADIR}/ssh_host_rsa_key.pu # show info about new key show_key + +} |