Break out host export commands into gpg_host_export and
[monkeysphere.git] / src / share / mh / import_key
1 # -*-shell-script-*-
2 # This should be sourced by bash (though we welcome changes to make it POSIX sh compliant)
3
4 # Monkeysphere host import-key subcommand
5 #
6 # The monkeysphere scripts are written by:
7 # Jameson Rollins <jrollins@finestructure.net>
8 # Jamie McClelland <jm@mayfirst.org>
9 # Daniel Kahn Gillmor <dkg@fifthhorseman.net>
10 #
11 # They are Copyright 2008-2009 and are all released under the GPL,
12 # version 3 or later.
13
14 import_key() {
15
16 local hostName
17 local userID
18 local fingerprint
19
20 # check for presence of secret key
21 # FIXME: is this the proper test to be doing here?
22 fingerprint_host_key >/dev/null \
23         && failure "An OpenPGP host key already exists."
24
25 hostName=${1:-$(hostname -f)}
26
27 userID="ssh://${hostName}"
28
29 # create host home
30 mkdir -p "$GNUPGHOME_HOST"
31 chmod 700 "$GNUPGHOME_HOST"
32
33 log verbose "importing ssh key..."
34 # translate ssh key to a private key
35 PEM2OPENPGP_USAGE_FLAGS=authenticate pem2openpgp "$userID" | \
36     gpg_host --import
37
38 # find the key fingerprint of the newly converted key
39 HOST_FINGERPRINT=$(fingerprint_host_key)
40 export HOST_FINGERPRINT
41
42 # export public key to file
43 gpg_host_export_to_ssh_file
44
45 # show info about new key
46 show_key
47
48 }