Differences between version 68 and predecessor to the previous major change of GPG/PGPNotes.
Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History
Newer page: | version 68 | Last edited on Friday, October 27, 2006 5:15:20 am | by StuartYeates | Revert |
Older page: | version 67 | Last edited on Sunday, May 14, 2006 2:00:35 pm | by CraigBox | Revert |
@@ -218,12 +218,27 @@
----
!!!Ensuring compatibility with old versions of [PGP]/[GnuPG]:
[A comprehensive table of what algorithms are supported by every version of PGP/GnuPG|https://netfiles.uiuc.edu/ehowes/www/pgp-summ.htm] is available.
+
+----
+!!!Getting new keys from the PGP Global Directory
+
+The PGP Global Directory does not appear to generate new signatures use used as standard via the --refresh option. Here's a little script that will do this for every key on your keyring:
+
+<pre>
+gpg --with-colons --list-sigs | awk -F: '/pub/{pub=$5;}/sig:::17:/{if ($5="9710B89BCA57AD7C") print pub}' | sort | uniq | awk '{printf "wget https://keyserver.pgp.com/vkd/DownloadKey.event?keyid=0x%s\n", $0;}' > cmds
+source cmds
+gpg --import DownloadKey.event\?keyid\=0x*
+gpg --with-colons --list-sigs | awk -F: '/pub/{pub=$5;}/sig:::17:/{if ($5="9710B89BCA57AD7C") print pub}' | sort | uniq | awk '{printf "gpg --send %s\n", $0;}' > cmds2
+source cmds2
+</pre>
+
+
!!!See also
* [GnuPG Keysigning Party HOWTO | http://www.cryptnet.net/fdp/crypto/gpg-party.html]
* [GPGMailClients], for integrating encryption into your favourite email client.
* [KeySigningScripts]
----
Part of CategoryCryptography