summaryrefslogtreecommitdiff
path: root/src/share/keytrans
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2009-03-01 13:40:12 -0500
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2009-03-01 13:40:12 -0500
commit15d752f93a3a9807430fe8b3cd6e16f3cede8e7c (patch)
tree22131a54143254b1279780baf4085033468dba69 /src/share/keytrans
parent26527731b6b1bbeaa9e2e8a0507c52ca164803ed (diff)
updating header comments in keytrans now that it serves two purposes.
Diffstat (limited to 'src/share/keytrans')
-rwxr-xr-xsrc/share/keytrans27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/share/keytrans b/src/share/keytrans
index 8bf17fb..8b2e2ea 100755
--- a/src/share/keytrans
+++ b/src/share/keytrans
@@ -1,5 +1,15 @@
#!/usr/bin/perl -w -T
+# keytrans: this is an RSA key translation utility; it is capable of
+# transforming RSA keys (both public keys and secret keys) between
+# several popular representations, including OpenPGP, PEM-encoded
+# PKCS#1 DER, and OpenSSH-style public key lines.
+
+# How it behaves depends on the name under which it is invoked. The
+# two implementations currently are: pem2openpgp and openpgp2ssh.
+
+
+
# pem2openpgp: take a PEM-encoded RSA private-key on standard input, a
# User ID as the first argument, and generate an OpenPGP secret key
# and certificate from it.
@@ -12,6 +22,23 @@
# pem2openpgp 'ssh://'$(hostname -f) < /etc/ssh/ssh_host_rsa_key | gpg --import
+
+
+
+# openpgp2ssh: take a stream of OpenPGP packets containing public or
+# secret key material on standard input, and a Key ID (or fingerprint)
+# as the first argument. Find the matching key in the input stream,
+# and emit it on stdout in an OpenSSH-compatible format. If the input
+# key is an OpenPGP public key (either primary or subkey), the output
+# will be an OpenSSH single-line public key. If the input key is an
+# OpenPGP secret key, the output will be a PEM-encoded RSA key.
+
+# Example usage:
+
+# gpg --export-secret-subkeys --export-options export-reset-subkey-passwd $KEYID | \
+# openpgp2ssh $KEYID | ssh-add /dev/stdin
+
+
# Authors:
# Jameson Rollins <jrollins@finestructure.net>
# Daniel Kahn Gillmor <dkg@fifthhorseman.net>