Skip to content

Instantly share code, notes, and snippets.

@kafene
Last active June 2, 2024 20:45
Show Gist options
  • Save kafene/0a6e259996862d35845784e6e5dbfc79 to your computer and use it in GitHub Desktop.
Save kafene/0a6e259996862d35845784e6e5dbfc79 to your computer and use it in GitHub Desktop.
Setting up WKD for self-hosted automatic key discovery

I just got this working so I figured I'd share what I found, since there's hardly any information about this anywhere online except an RFC, the GPG mailing list and one tutorial from the GnuPG blog.

You can use automatic key discovery with WKD (Web key directory) to make it easy for users to import your key, in GPG since version 2.1.12. Since this feature is fairly new, it isn't yet available in the current LTS release of Ubuntu (16.04; xenial), however it is available in Debian stable (stretch).

I couldn't add a DNS CERT or DANE / OPENPGPKEY record through my email service (which also hosts my nameservers). I tried making the PKA record - a foo._pka.example.com TXT record but GPG doesn't seem to recognize it and fails; I'm still investigating why.

So the last option for self-hosted auto-discovery was WKD.

First thing I had to do was add an email address to my key. My primary UID is just my name so the key represents my identity rather than any particular email address. This was easy enough:

$ gpg --edit-key 0xDEADBEEFCAFEBABE
gpg> adduid
# follow the prompts
gpg> save

I used this to configure a sub-identity using my domain name as the "real name" and an email address (foo@example.com). I suppose most here will already have an email address associated with their uid, or else be familiar with the process of editing keys.

Then I created a directory on my server:

$ ssh example.com
> mkdir -p /var/www/.well-known/openpgpkey/hu

The file you'll put inside this directory needs to be named the same as the WKD hash for your key, to get that run:

gpg --with-wkd-hash --fingerprint foo@example.com

Below each uid line with an email address, you should see 32 random looking characters @yourdomain.tld, for example:

pub   2048R/0xDEADBEEFCAFEBABE 2015-01-25 [C] [expires: 2020-01-25]
      Key fingerprint = ....
uid                   [ultimate] Your Name <foo@example.com>
                      sc8wrug2g3mz8m8jz4tjrlgweilkgcba@example.com

So the WKD hash in this example is sc8wrug2g3mz8m8jz4tjrlgweilkgcba. Let's create the file that we'll be uploading:

gpg --no-armor --export foo@example.com > sc8wrug2g3mz8m8jz4tjrlgweilkgcba

Copy that file into .well-known/openpgpkey/hu directory on your web server. If you have SSH access to your server configured you can use scp:

scp ./sc8wrug2g3mz8m8jz4tjrlgweilkgcba example.com:/var/www/.well-known/openpgpkey/hu/

I found that you do not need to enable directory listings for this well-known directory. To specify the correct content type with Apache, you can create a .htaccess file inside the .well-known/openpgpkey/hu directory with the following content:

<IfModule mod_mime.c>
    ForceType application/pgp-key
</IfModule>

That will force all files within the directory to be served as application/pgp-key.

That's all you need to do.

You can test that it's working correctly:

gpg --no-default-keyring --keyring /tmp/gpg-$$ --auto-key-locate clear,wkd --locate-keys foo@example.com

Example output:

gpg: key DEADBEEFCAFEBABE: public key "Your Name" imported
gpg: Total number processed: 1
gpg:               imported: 1
gpg: automatically retrieved 'foo@example.com' via WKD
...

You can instruct users who wish to import your key to run the command:

gpg --auto-key-locate clear,wkd --locate-keys foo@example.com

Or, to configure GPG to locate keys using wkd by placing this line in their gpg.conf:

auto-key-locate keyserver,dane,cert,pka,wkd,ldap,hkp://keys.gnupg.net

Note - that's just an example, only the wkd option is relevant for this, but the other options are handy too.

@pravi
Copy link

pravi commented Jun 1, 2024

I'm trying to implement WKD support in mailvelope keyserver - this is the work in progress branch mailvelope/keyserver#146 The ascii armored keys are available in the expected url but gpg and thunderbird don't seem to accept the keys.
I wonder if https://github.com/mailvelope/keyserver/blob/master/src/route/hkp.js#L52 is the problem. May be this should not be an attachment?

@wiktor-k
Copy link

wiktor-k commented Jun 1, 2024

The ascii armored keys are available in the expected url but gpg and thunderbird don't seem to accept the keys.

The keys must be binary, not armored:

The HTTP GET method MUST return the binary representation of the OpenPGP key for the given mail address.

Source: https://www.ietf.org/archive/id/draft-koch-openpgp-webkey-service-17.html#section-3.1

@pravi
Copy link

pravi commented Jun 1, 2024

Thanks! Though even after dearmoring, mailvelope/keyserver#121 (comment) gpg still fails to find the key.

@pravi
Copy link

pravi commented Jun 2, 2024

This is now working fine in mailvelope keyserver mailvelope/keyserver#147 ascii armored keys are fine for both gpg and thunderbird, the problem was wkd url now includes a query parameter and caddy rewrite rule was not expecting that.


❯ gpg-wks-client --print-wkd-url praveen@puri.sm 
https://openpgpkey.puri.sm/.well-known/openpgpkey/puri.sm/hu/g4rf118d16sbj3k77d5txywpm879pszg?l=praveen

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment