summaryrefslogtreecommitdiff
path: root/src/subcommands/mh/gen-key
diff options
context:
space:
mode:
authorJameson Graef Rollins <jrollins@finestructure.net>2009-01-31 18:33:07 -0500
committerJameson Graef Rollins <jrollins@finestructure.net>2009-01-31 18:33:07 -0500
commitc7abef25b0cb36c04d12619659b7f0ad1b410c9a (patch)
tree743e8314a8f81adb184bb8bc3154ce81bbbe3195 /src/subcommands/mh/gen-key
parentdd84300cab61e2a86299fd8c05f337abb38fb7d9 (diff)
more moving to subfunctions, and rename of show-key
Diffstat (limited to 'src/subcommands/mh/gen-key')
-rwxr-xr-xsrc/subcommands/mh/gen-key4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/subcommands/mh/gen-key b/src/subcommands/mh/gen-key
index 9f26087..df57457 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"
@@ -102,3 +104,5 @@ log info "SSH host public key in OpenPGP form: ${SYSDATADIR}/ssh_host_rsa_key.pu
# show info about new key
show_key
+
+}