summaryrefslogtreecommitdiff
path: root/src/share/mh/gen_key
diff options
context:
space:
mode:
authorJameson Graef Rollins <jrollins@finestructure.net>2009-02-09 00:21:40 -0500
committerJameson Graef Rollins <jrollins@finestructure.net>2009-02-09 00:21:40 -0500
commitf728df69bbb04ed21a437832c486590cc5a83684 (patch)
treeb966de78cb2c3803f3d905972d9c0321976e14fc /src/share/mh/gen_key
parent770f45b0c1d72a1bb89fd98fe070a6dfdcc4c0bf (diff)
Break out host export commands into gpg_host_export and
gpg_host_export_to_ssh_file functions, and update the {gen,import}_key functions accordingly.
Diffstat (limited to 'src/share/mh/gen_key')
-rw-r--r--src/share/mh/gen_key12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/share/mh/gen_key b/src/share/mh/gen_key
index eb951cf..c75ad65 100644
--- a/src/share/mh/gen_key
+++ b/src/share/mh/gen_key
@@ -79,15 +79,16 @@ chmod 700 "$GNUPGHOME_HOST"
log verbose "generating host key..."
echo "$keyParameters" | gpg_host --batch --gen-key
-# find the key fingerprint of the newly generated key
-fingerprint=$(fingerprint_host_key)
+# find the key fingerprint of the newly converted key
+HOST_FINGERPRINT=$(fingerprint_host_key)
+export HOST_FINGERPRINT
# translate the private key to ssh format, and export to a file
# for sshs usage.
# NOTE: assumes that the primary key is the proper key to use
log debug "exporting new secret key to ssh format..."
(umask 077 && \
- gpg_host --export-secret-key "$fingerprint" | \
+ gpg_host --export-secret-key "$HOST_FINGERPRINT" | \
openpgp2ssh "$fingerprint" > "${MHDATADIR}/ssh_host_rsa_key")
log info "SSH host private key output to file: ${MHDATADIR}/ssh_host_rsa_key"
@@ -95,9 +96,8 @@ log debug "creating ssh public key..."
ssh-keygen -y -f "${MHDATADIR}/ssh_host_rsa_key" > "${MHDATADIR}/ssh_host_rsa_key.pub"
log info "SSH host public key output to file: ${MHDATADIR}/ssh_host_rsa_key.pub"
-log debug "exporting openpgp public key..."
-gpg_host --export-options export-minimal --armor --export "0x${fingerprint}!" > "${MHDATADIR}/ssh_host_rsa_key.pub.gpg"
-log info "SSH host public key in OpenPGP form: ${MHDATADIR}/ssh_host_rsa_key.pub.gpg"
+# export public key to file
+gpg_host_export_to_ssh_file
# show info about new key
show_key