Update to pgpdump 0.15.
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 NotDashEscaped: You need GnuPG to verify this message > MASTER_SITES= ftp://pgp.iijlab.net/pub/pgp/tools/ > >diff -ruN pgpdump.orig/distinfo pgpdump/distinfo >--- pgpdump.orig/distinfo Sat Nov 10 05:59:01 2001 >+++ pgpdump/distinfo Tue Nov 13 13:34:53 2001 >@@ -1 +1 @@ >-MD5 (pgpdump-0.14.tar.gz) = db1a93af0dd7c65c6d21884b686f9b55 >+MD5 (pgpdump-0.15.tar.gz) = 72031e65fa25fd76f2b35f4b1bca89ea pgpdump-0.14.tar.gz is now unfetchable as well, since it has been removed from the FTP site. The following patch against pgpdump-0.15 makes it possible to feed the Key ID directly to gpg --recv-keys, which I find quite useful. The author has been sent a copy. --- pgpdump.h 2001/11/29 19:04:38 1.1 +++ pgpdump.h 2001/11/29 19:06:55 @@ -68,6 +68,10 @@ int i; for (i = 0; i < (len); i++) printf("%02x ", Getc());\ } while (0) +#define kdump(len) printf ("0x"); do {\ + int i; for (i = 0; i < (len); i++) printf("%02X", Getc());\ + } while (0) + /* * packet.c */ --- types.c~ Mon Nov 12 02:07:29 2001 +++ types.c Thu Nov 29 14:08:00 2001 @@ -157,7 +157,7 @@ key_id(void) { printf("\tKey ID - "); - dump(8); + kdump(8); printf("\n"); } -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8BpaSSypIl9OdoOMRArBXAJ9E+f8S/qdw5u6sesEF8fQgyJQ7sQCfRYca 0qw2dqDJ71EmHaXzvZ3pWQ8= =ND7X -----END PGP SIGNATURE-----
State Changed From-To: open->closed Committed, thanks!