From a4983d24c8e79729deaa02602b742eace6d09f86 Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Sat, 15 Nov 2008 18:55:42 -0500 Subject: change from using a filename that is a just a space to an actual temporary file --- src/monkeysphere-server | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/monkeysphere-server') diff --git a/src/monkeysphere-server b/src/monkeysphere-server index e78903b..5edaa4f 100755 --- a/src/monkeysphere-server +++ b/src/monkeysphere-server @@ -134,10 +134,10 @@ show_server_key() { # dumping to a file named ' ' so that the ssh-keygen output # doesn't claim any potentially bogus hostname(s): - tmpkey=$(mktemp -d ${TMPDIR:-/tmp}/tmp.XXXXXXXXXX) || failure "Could not create temporary directory!" - gpg_authentication "--export $fingerprint" | openpgp2ssh "$fingerprint" 2>/dev/null > "$tmpkey/ " + tmpkey=$(mktemp ${TMPDIR:-/tmp}/tmp.XXXXXXXXXX) || failure "Could not create temporary directory!" + gpg_authentication "--export $fingerprint" | openpgp2ssh "$fingerprint" 2>/dev/null > "$tmpkey" echo -n "ssh fingerprint: " - (cd "$tmpkey" && ssh-keygen -l -f ' ' | awk '{ print $2 }') + ssh-keygen -l -f $tmpkey | awk '{ print $1, $2, $4 }' rm -rf "$tmpkey" echo -n "OpenPGP fingerprint: " echo "$fingerprint" -- cgit v1.2.3 From d068b7c722211adf7d830b1c1b4ce9693eafbe4f Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Sun, 16 Nov 2008 00:57:27 -0500 Subject: m-s s: avoid failures when $TMPDIR has a space in it. (output might still be a bit garbled) --- src/monkeysphere-server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/monkeysphere-server') diff --git a/src/monkeysphere-server b/src/monkeysphere-server index 5edaa4f..665d916 100755 --- a/src/monkeysphere-server +++ b/src/monkeysphere-server @@ -137,7 +137,7 @@ show_server_key() { tmpkey=$(mktemp ${TMPDIR:-/tmp}/tmp.XXXXXXXXXX) || failure "Could not create temporary directory!" gpg_authentication "--export $fingerprint" | openpgp2ssh "$fingerprint" 2>/dev/null > "$tmpkey" echo -n "ssh fingerprint: " - ssh-keygen -l -f $tmpkey | awk '{ print $1, $2, $4 }' + ssh-keygen -l -f "$tmpkey" | awk '{ print $1, $2, $4 }' rm -rf "$tmpkey" echo -n "OpenPGP fingerprint: " echo "$fingerprint" -- cgit v1.2.3 From 9eed0790573d3f1f21707151ede87f8339dbecc0 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Sun, 16 Nov 2008 01:28:19 -0500 Subject: exporting SSH host public key (two variants: one traditional ssh, the other OpenPGP) during m-s gen-key --- src/monkeysphere-server | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/monkeysphere-server') diff --git a/src/monkeysphere-server b/src/monkeysphere-server index 665d916..bb26c04 100755 --- a/src/monkeysphere-server +++ b/src/monkeysphere-server @@ -399,7 +399,11 @@ EOF (umask 077 && \ gpg_host --export-secret-key "$fingerprint" | \ openpgp2ssh "$fingerprint" > "${SYSDATADIR}/ssh_host_rsa_key") - log info "private SSH host key output to file: ${SYSDATADIR}/ssh_host_rsa_key" + log info "SSH host private key output to file: ${SYSDATADIR}/ssh_host_rsa_key" + ssh-keygen -y -f "${SYSDATADIR}/ssh_host_rsa_key" > "${SYSDATADIR}/ssh_host_rsa_key.pub" + log info "SSH host public key output to file: ${SYSDATADIR}/ssh_host_rsa_key.pub" + gpg_authentication --export-options export-minimal --export "0x${fingerprint}!" > "${SYSDATADIR}/ssh_host_rsa_key.pub.gpg" + log info "SSH host public key in OpenPGP form: ${SYSDATADIR}/ssh_host_rsa_key.pub.gpg" } # extend the lifetime of a host key: -- cgit v1.2.3 From 864a89f60b05f0f32cf8ef2bb5677c2d50062749 Mon Sep 17 00:00:00 2001 From: Jameson Graef Rollins Date: Sun, 16 Nov 2008 19:10:03 -0500 Subject: fix quoting in output of ssh_host_rsa_key.pub.gpg. remember, at the moment the gpg_authentication function can only accept a single argument, so the entire gpg command string needs to be in a single quoted string. --- src/monkeysphere-server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/monkeysphere-server') diff --git a/src/monkeysphere-server b/src/monkeysphere-server index bb26c04..018a1ec 100755 --- a/src/monkeysphere-server +++ b/src/monkeysphere-server @@ -402,7 +402,7 @@ EOF log info "SSH host private key output to file: ${SYSDATADIR}/ssh_host_rsa_key" ssh-keygen -y -f "${SYSDATADIR}/ssh_host_rsa_key" > "${SYSDATADIR}/ssh_host_rsa_key.pub" log info "SSH host public key output to file: ${SYSDATADIR}/ssh_host_rsa_key.pub" - gpg_authentication --export-options export-minimal --export "0x${fingerprint}!" > "${SYSDATADIR}/ssh_host_rsa_key.pub.gpg" + gpg_authentication "--export-options export-minimal --export 0x${fingerprint}!" > "${SYSDATADIR}/ssh_host_rsa_key.pub.gpg" log info "SSH host public key in OpenPGP form: ${SYSDATADIR}/ssh_host_rsa_key.pub.gpg" } -- cgit v1.2.3 From 11a42a66941cc1bb4c1268895ac4522ecb5fb6e6 Mon Sep 17 00:00:00 2001 From: Jameson Graef Rollins Date: Sun, 16 Nov 2008 19:32:58 -0500 Subject: really fix the ssh_host_rsa_key.pub.gpg output. --- src/monkeysphere-server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/monkeysphere-server') diff --git a/src/monkeysphere-server b/src/monkeysphere-server index 018a1ec..34b06b7 100755 --- a/src/monkeysphere-server +++ b/src/monkeysphere-server @@ -402,7 +402,7 @@ EOF log info "SSH host private key output to file: ${SYSDATADIR}/ssh_host_rsa_key" ssh-keygen -y -f "${SYSDATADIR}/ssh_host_rsa_key" > "${SYSDATADIR}/ssh_host_rsa_key.pub" log info "SSH host public key output to file: ${SYSDATADIR}/ssh_host_rsa_key.pub" - gpg_authentication "--export-options export-minimal --export 0x${fingerprint}!" > "${SYSDATADIR}/ssh_host_rsa_key.pub.gpg" + gpg_authentication "--export-options export-minimal --armor --export 0x${fingerprint}\!" > "${SYSDATADIR}/ssh_host_rsa_key.pub.gpg" log info "SSH host public key in OpenPGP form: ${SYSDATADIR}/ssh_host_rsa_key.pub.gpg" } -- cgit v1.2.3 width: -nan%;'/> -rw-r--r--tags/16/2b/20130823042521.001F438048@slamuf.jones.dk/sys0
-rw-r--r--tags/16/2b/20170125053410.697B1346B@lxp5.free-owl.de/sys0
-rw-r--r--tags/16/2b/20170125053410.697B1346B@lxp5.free-owl.de/unread0
-rw-r--r--tags/16/2b/20171202070002.BAAD04562@lxp5.free-owl.de/sys0
-rw-r--r--tags/16/2b/20171202070002.BAAD04562@lxp5.free-owl.de/unread0
-rw-r--r--tags/16/2b/20180122211727.44C1C1C092@jawa.homebase.dk/hb0
-rw-r--r--tags/16/2b/20180122211727.44C1C1C092@jawa.homebase.dk/unread0
-rw-r--r--tags/16/2b/20191014010001.C4FB51CD58C@lxp5.free-owl.de/sys0
-rw-r--r--tags/16/2b/20191014010001.C4FB51CD58C@lxp5.free-owl.de/unread0
-rw-r--r--tags/16/2b/20200608164859.6B63DEE5@xayide.jones.dk/attachment0
-rw-r--r--tags/16/2b/20200608164859.6B63DEE5@xayide.jones.dk/inbox0
-rw-r--r--tags/16/2b/20200608164859.6B63DEE5@xayide.jones.dk/killed0
-rw-r--r--tags/16/2b/20200608164859.6B63DEE5@xayide.jones.dk/unread0
-rw-r--r--tags/16/2b/20200702150342.962321BEA6C@uno100pregana.com/inbox0
-rw-r--r--tags/16/2b/20200702150342.962321BEA6C@uno100pregana.com/killed0
-rw-r--r--tags/16/2b/20200702150342.962321BEA6C@uno100pregana.com/unread0
-rw-r--r--tags/16/2b/2ba1fc0078a6f53e144ef9085f9ba794@sms-backup-plus.local/unread0
-rw-r--r--tags/16/2b/531DC35C.2070501@gmail.com/inbox0
-rw-r--r--tags/16/2b/531DC35C.2070501@gmail.com/old0
-rw-r--r--tags/16/2b/87a6v9r7qd.fsf@turtle.gmx.de/debian0
-rw-r--r--tags/16/2b/8de81c230902182352w4d7785b0sdf9ccfd320a8529f@mail.gmail.com/debian0
-rw-r--r--tags/16/2b/A2A20EC3B8560D408356CAC2FC148E53016CF600DF@SUN-DAG3.synchrotron-soleil.fr/debian0
-rw-r--r--tags/16/2b/A2A20EC3B8560D408356CAC2FC148E53016CF600DF@SUN-DAG3.synchrotron-soleil.fr/unread0
-rw-r--r--tags/16/2b/CACujMDMtDDvTBYrsLfhVv8pAvz3FFtn1Ba-igEQpvsjT_tsbTg@mail.gmail.com/debian0
-rw-r--r--tags/16/2b/CACujMDMtDDvTBYrsLfhVv8pAvz3FFtn1Ba-igEQpvsjT_tsbTg@mail.gmail.com/unread0
-rw-r--r--tags/16/2b/YY5rVyRHvHBpIMw2@bubu.plessy.net/debian0
-rw-r--r--tags/16/2b/YY5rVyRHvHBpIMw2@bubu.plessy.net/unread0
-rw-r--r--tags/16/2b/f6a511fe96c735025c2b00468a7bbf56cab5519a.camel@debian.org/debian0
-rw-r--r--tags/16/2b/f6a511fe96c735025c2b00468a7bbf56cab5519a.camel@debian.org/signed0
-rw-r--r--tags/16/2b/f6a511fe96c735025c2b00468a7bbf56cab5519a.camel@debian.org/unread0
-rw-r--r--tags/16/2b/mailman.102.1624950002.32663.design-devel@alioth-lists.debian.net/inbox0
-rw-r--r--tags/16/2b/mailman.102.1624950002.32663.design-devel@alioth-lists.debian.net/killed0
-rw-r--r--tags/16/2b/mailman.102.1624950002.32663.design-devel@alioth-lists.debian.net/unread0
-rw-r--r--tags/16/2b/mailman.6765.1667319328.552.pkg-javascript-devel@alioth-lists.debian.net/inbox0
-rw-r--r--tags/16/2b/mailman.6765.1667319328.552.pkg-javascript-devel@alioth-lists.debian.net/killed0
-rw-r--r--tags/16/2b/mailman.6765.1667319328.552.pkg-javascript-devel@alioth-lists.debian.net/unread0
-rw-r--r--tags/16/2b/p05111b03baade1e42e8d@%5b192.168.103.253%5d/hb0
-rw-r--r--tags/16/2b/p05111b03baade1e42e8d@%5b192.168.103.253%5d/inbox0
-rw-r--r--tags/16/2b/p05111b03baade1e42e8d@%5b192.168.103.253%5d/old0
-rw-r--r--tags/16/2b/p05111b03baade1e42e8d@%5b192.168.103.253%5d/replied0
46 files changed, 0 insertions, 0 deletions