From b7e17887ac20bc5916d830f5282b07f4c0360c2a Mon Sep 17 00:00:00 2001 From: Jameson Graef Rollins Date: Sat, 31 Jan 2009 17:30:11 -0500 Subject: break out monkeysphere-{host,authentication} subcommands into seperate scripts. MUCH MORE WORK NEEDED to get these working. --- src/subcommands/mh/show-key | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100755 src/subcommands/mh/show-key (limited to 'src/subcommands/mh/show-key') diff --git a/src/subcommands/mh/show-key b/src/subcommands/mh/show-key new file mode 100755 index 0000000..c62ec16 --- /dev/null +++ b/src/subcommands/mh/show-key @@ -0,0 +1,37 @@ +#!/usr/bin/env bash + +# Monkeysphere host show-key subcommand +# +# The monkeysphere scripts are written by: +# Jameson Rollins +# Jamie McClelland +# Daniel Kahn Gillmor +# +# They are Copyright 2008, and are all released under the GPL, version 3 +# or later. + +local fingerprintPGP +local fingerprintSSH +local ret=0 + +# FIXME: you shouldn't have to be root to see the host key fingerprint +if is_root ; then + check_host_keyring + fingerprintPGP=$(fingerprint_server_key) + gpg_authentication "--fingerprint --list-key --list-options show-unusable-uids $fingerprintPGP" 2>/dev/null + echo "OpenPGP fingerprint: $fingerprintPGP" +else + log info "You must be root to see host OpenPGP fingerprint." + ret='1' +fi + +if [ -f "${SYSDATADIR}/ssh_host_rsa_key.pub" ] ; then + fingerprintSSH=$(ssh-keygen -l -f "${SYSDATADIR}/ssh_host_rsa_key.pub" | \ + awk '{ print $1, $2, $4 }') + echo "ssh fingerprint: $fingerprintSSH" +else + log info "SSH host key not found." + ret='1' +fi + +return $ret -- cgit v1.2.3