X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=src%2Fshare%2Fmh%2Fimport_key;h=9be8dce5ba9256d5355ecba07e348a3bf4d3ac59;hb=c27c0ad208919590a118d5f271d28b044beea9bb;hp=2e73a8c6cc32878a11e413ca706f5290d91e55c7;hpb=be606510fb37cac8ca7eddadf719efb0598a2ed2;p=monkeysphere.git diff --git a/src/share/mh/import_key b/src/share/mh/import_key index 2e73a8c..9be8dce 100644 --- a/src/share/mh/import_key +++ b/src/share/mh/import_key @@ -15,12 +15,6 @@ import_key() { local hostName local userID -local fingerprint - -# check for presense of secret key -# FIXME: is this the proper test to be doing here? -fingerprint_host_key >/dev/null \ - && failure "An OpenPGP host key already exists." hostName=${1:-$(hostname -f)} @@ -32,16 +26,14 @@ chmod 700 "$GNUPGHOME_HOST" log verbose "importing ssh key..." # translate ssh key to a private key -(umask 077 && \ - pem2openpgp "$userID" | gpg_host --import) +PEM2OPENPGP_USAGE_FLAGS=authenticate pem2openpgp "$userID" | \ + gpg_host --import -# find the key fingerprint of the newly converted key -fingerprint=$(fingerprint_host_key) +# load the new host fpr into the fpr variable +load_fingerprint_secret -# export public key to file -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 to gpg public key to file +create_gpg_pub_file # show info about new key show_key