Keysigning @ DebConf10

Where?

As part of the 11th Debian Conference in New York City, USA, there will be OpenPGP (pgp/gpg) keysignings.

When?

On Debconf Day 1, Sunday 1st of August at 22:30 there will be a discussion/information session about the kesigning during Debconf10.

For the few people who insist on having a classic KSP, there will one scheduled on Debconf Day 6, Friday 6th of August at 22:00.

What is keysigning and why do it

A keysigning party or meeting is a get-together of at least two individuals who use the PGP encryption system with the purpose of allowing them to sign each others keys. Keysigning parties serve to extend the web of trust (WoT) to a great degree. A useful metric of the WoT is the mean shortest distance (MSD) of a key.

Please read chapters one and two of the GnuPG Keysigning Party HOWTO (note: we are doing the party differently, so the other chapters do not apply completely).

Don't you have a strong key yet?

The Debian Project is considering replacing existing GPG keys with stronger ones using SHA256 or better without downgrading its WoT. Please read:

http://lists.debian.org/debian-devel-announce/2009/05/msg00005.html

The process to create a new key is documented at http://keyring.debian.org/creating-key.html.

If you plan to migrate your WoT, you should read "HOWTO prep for migration off of SHA-1 in OpenPGP" at http://www.debian-administration.org/users/dkg/weblog/48.

The document "OpenPGP Best Practices" is available at https://we.riseup.net/riseuplabs+paow/openpgp-best-practices and its OpenPGP key checks have been implemented.

How will the keysigning happen?

The keysignings will be based on the Efficient Group Key Signing Method by Len Sassaman and Phil Zimmermann which is a protocol to do keysignings in a way that is faster than the way many people may be familiar with.

The deadline has now passed. If you haven't submitted your keys yet, it's too late to get your keys on the list. It's not, however, too late to participate altogether. Bring paper slips or business cards with your gpg fingerprint.

Please check that your version of gpg does support the export-clean option.
Please do not encrypt your email.
Please do not send attachments.
Please do not encode your email.
Example with two keys 0xfedcba98 and 0x76543210, signature is made with both keys 0xfedcba98 and 0x76543210:
gpg --armor --export-options export-clean,export-minimal --export 0xfedcba98 0x76543210 > publickeyblock
Then clear-sign publickeyblock with your keys 0xfedcba98 and 0x76543210 creating publickeyblock.asc:
gpg --local-user 0xfedcba98 --clearsign --local-user 0x76543210 --clearsign publickeyblock
Then email publickeyblock.asc as so:
mail -s "KeySigning Party @ DebConf10" anibal@debian.org < publickeyblock.asc
Same example as a one-liner:
gpg --armor --export-options export-clean,export-minimal --export 0xfedcba98 0x76543210 | gpg --local-user 0xfedcba98 --clearsign --local-user 0x76543210 --clearsign | mail -s "KeySigning Party @ DebConf10" anibal@debian.org
Another one-liner:
(echo -e "To: anibal@debian.org\nFrom: Your Full Name <name@example.org>\nBcc: name@example.org\nSubject: KeySigning Party @ DebConf10\n"; gpg --armor --export-options export-clean,export-minimal --export 0xfedcba98 0x76543210 | gpg --local-user 0xfedcba98 --clearsign --local-user 0x76543210 --clearsign) | sendmail -t
At http://people.debian.org/~anibal/ksp-dc10/names.html, if you want your name linked to your photo, send an email to anibal@debian.org.
At http://people.debian.org/~anibal/ksp-dc10/ both the keyring and text files will have corresponding files with their SHA256 checksums. The SHA256 files will be signed with public key 0x947897D8, which can be downloaded from keyring.debian.org or db.debian.org.
To verify the signuture of the SHA256 files, download anibal's key from db.debian.org, e.g.:
finger anibal/key@db.debian.org | gpg --import
And then run gpg with the verify option (using ksp-dc10.txt.sha256.asc as an example):
gpg --verify ksp-dc10.txt.sha256.asc
sha256sum ksp-dc10.txt
It is very important that you have verified at home the fingerprints of your keys on the hardcopy.
It is also very important that you have computed the hash at home.
For each participant in your group:
  1. Compare the hash you computed with the other participant (it will be recited loudly).
  2. Ask if the other participant's gpg fingerprints on the hardcopy are correct.
  3. Verify each other's identity by checking preferably a passport or, alternatively, some other form of government issued ID. Please don't show very old, doubtful or easy-to-fake documents as people will not sign your key if you do so.
  4. If you are satisfied with the identification, mark on your hardcopy that the other participant's gpg fingerprints are correct and the other participant has been identified.
Please use Peter Palfrader's pgp-tools to sign keys using caff, one of the scripts of pgp-tools. The scripts are also available as the debian package signing-party.

Downloads

Summary

What to bring with you

Questions

If you have questions please email Anibal Monsalve Salazar at anibal@debian.org.

Thanks

Special thanks goes to Benjamin Mako Hill who provided the scripts and text used at Debconf4, Peter Palfrader who provided the scripts and text used at Debconf3 and LinuxTag (2003 and 2004) whose reuse made putting together this keysigning easy and possible.