
Open your smartphone’s address book, tap “share contact”. What leaves your device is a vCard: a little text file β a name, a number, an e-mail, maybe a photo. Universal, readable everywhere β Android, iOS, Outlook, Thunderbird. And utterly unverifiable. Nothing in a vCard says it really comes from the person it names. You can forge one, say “from your bank”, in seconds.
Next to it sits an object that does not lie: the OpenPGP certificate. Signed, verifiable in the web of trust, it lets you sign, decrypt and authenticate. But to many, it’s “just a key” β an opaque blob that describes no one and that few of us have filed away in our address book.
Two objects that have ignored each other for thirty years. The good news: they are far closer than they look.
A vCard 4.0 (RFC 6350
) is nothing but a list of PROPERTY:value lines:
FN:Robin Doe
EMAIL:robin@example.org
TEL;TYPE=voice:+33612345678
An OpenPGP certificate (RFC 9580 ) is a public key plus a list of certified data β the User IDs. Each User ID is a small text string, self-signed independently by the key, and revocable one at a time.
The question that reconciles the two worlds: what if the OpenPGP certificate certified the vCard data?
That is exactly what our tooling does: one User ID per vCard property (FN:β¦, EMAIL:β¦, TEL:β¦, ADR:β¦, NOTE:β¦), each being, by construction, a valid vCard line, all anchored on a pivot identifier β the EID
(urn:eid:β¦), deterministic, decentralised and privacy-preserving. An OpenPGP certificate thus becomes a complete, signed directory entry, where only the owner can add or remove a field.
Two families of EID coexist, depending on the nature of the entity:
Take our own association, registered in the French Journal officiel on 3 April 2023 in Pelleautier (Hautes-Alpes, France). Born at that instant and place, it gets a u5 identifier β and its directory entry, as it would come out of its certificate, looks like this:
UID:urn:eid:u5001680487200.000e_44.52_006.01
FN:FRIENDS OF OPENPGP (FOOPGP)
EMAIL:info@foopgp.org
TEL;TYPE=voice:+33677997855
ADR:;;75 impasse Serre des Isnards;Pelleautier;;05000;France
NOTE:Non-profit association β transparency, benevolence, cooperation, proximity.
Every line is signed by the association itself. No one can slip false information into it β it’s our card, and only we can change it.
To see the translation at work, entirely in your browser, with nothing uploaded, we published pgp2vcard.html
: paste an OpenPGP certificate, get a vCard 4.0 back β or its JSON counterpart, jCard (RFC 7095
). The public key itself comes out in a KEY field, ready to encrypt.
Now imagine your address book stored OpenPGP certificates where it stores vCards today. What you gain is not cosmetic:
The address book stops being a list of rumours and becomes a directory of proofs. No new app, no new account: just by teaching our everyday software to treat a certificate as a first-class contact.
None of this requires inventing a format. It’s all there: the vCard (RFC 6350
) and its parameter encoding (RFC 6868
) to describe; jCard (RFC 7095
) to handle it in JSON; OpenPGP (RFC 9580
) to sign and encrypt; our urn:eid: specification
, on its way to IANA registration, for the pivot identity. Synchronisation, too, has its vCard-side standard β CardDAV (RFC 6352
) β where nothing forbids carrying certificates rather than bare cards.
The bridge is one idea: one vCard property = one OpenPGP User ID. It is already tooled and reversible. What’s missing isn’t the technology: it’s that mainstream address books finally agree to read and transmit OpenPGP certificates.
This public directory of signed cards is, in fact, something you already know. Remember the White Pages β that thick directory the phone company (a state monopoly, then a national incumbent) dropped in every home: individuals listed by name. And its twin, the Yellow Pages: businesses, listed by trade. Almost every country had them (Yellow Pages, Gelbe Seiten, Pagine Gialle, PΓ‘ginas Amarillasβ¦). The distinction lives on, natively, in the EID: u4 is the White Pages; u5, the Yellow Pages.
But OpenPGP directories have two major advantages over those directories of old:
In short: the White or Yellow Pages, but under your control.
You can upload or search for a certificate on our key server , then click the vCard button:

The certificate will be parsed by pgp2vcard.html and turned into a vCard file (*.vcf) β the contact card you can download and import into all your current digital address books.

Now you can see the future of your carefully chosen apps: when you tap “share contact”, they will send, instead of vCards anyone can forge, personalised identity cards that no one can impersonate.
It’s a small technical step. It’s a large shift in trust.
References: vCard 4.0 β RFC 6350 , jCard β RFC 7095 , parameter encoding β RFC 6868 , CardDAV β RFC 6352 , OpenPGP β RFC 9580 . Our work: PGP ID / EID , the pgp2vcard.html tool.