X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=src%2Fshare%2Fmh%2Fimport_key;h=cab2cf55e27df17573840e54e4fcab5882fa0537;hb=9f033ac0c9a96acbbc583327026adb37e4d5a8a9;hp=1efb1ac5ce354836e0d63c0539135e1a476f05b6;hpb=c0ab14d9df7959057a04f2ebd837c50e169c1c01;p=monkeysphere.git diff --git a/src/share/mh/import_key b/src/share/mh/import_key index 1efb1ac..cab2cf5 100644 --- a/src/share/mh/import_key +++ b/src/share/mh/import_key @@ -13,15 +13,14 @@ import_key() { +local keyFile local hostName local userID -# check for presense of a key -[ "$FINGERPRINT" ] && \ - failure "An OpenPGP host key already exists." - -hostName=${1:-$(hostname -f)} +keyFile="$1" +[ -f "$keyFile" ] +hostName=${2:-$(hostname -f)} userID="ssh://${hostName}" # create host home @@ -30,15 +29,19 @@ chmod 700 "$GNUPGHOME_HOST" log verbose "importing ssh key..." # translate ssh key to a private key -PEM2OPENPGP_USAGE_FLAGS=authenticate pem2openpgp "$userID" | \ - gpg_host --import +PEM2OPENPGP_USAGE_FLAGS=authenticate pem2openpgp "$userID" <"$keyFile" \ + | gpg_host --import + +# load the new host fpr into the fpr variable +load_fingerprint_secret -# find the key fingerprint of the newly converted key -HOST_FINGERPRINT=$(fingerprint_host_key) -export HOST_FINGERPRINT +# export the host public key to the monkeysphere ssh pub key file +log debug "creating ssh public key file..." +ssh-keygen -y -f "$keyFile" > "$HOST_KEY_PUB" +log info "SSH host public key file: $HOST_KEY_PUB" -# export public key to file -gpg_host_export_to_ssh_file +# export to gpg public key to file +create_gpg_pub_file # show info about new key show_key