1.9 KiB
Personal PGP Key Provisioning
Requirements
-
Computer that can load AirgapOS (compatibility reference)
-
2+ new smart cards
-
2+ SD cards
Generate OpenPGP Key
-
Insert AirgapOS SD card into computer
-
Boot to AirgapOS
-
Boot from the SD card by modifying the Boot Menu
-
Disabling secure boot may be necessary
-
{{ #include ../../component-documents/openpgp-setup.md:steps-keyfork}}
Adding a OpenPGP Public Certificate to the Ceremony Repository
-
Ensure you are on the correct branch:
git checkout main
-
Pull the latest ceremony repo changes
git pull origin main
-
If using a certificate from Personal PGP Key Provisioning:
-
Obtain the fingerprint for the certificate:
fingerprint="$(sq keyring cert.asc | awk '{ print $2 }')"
-
Copy the certificate to a name based on the keyring:
cp cert.asc "${fingerprint}.asc"
-
-
If exporting a certificate from GnuPG:
-
Find your key fingerprint:
gpg --list-keys
-
Export your OpenPGP public certificate:
gpg --export --armor <key_fingerprint> > <key_fingerprint>.asc
-
-
Place the file in
keys/all/<key_fingerprint>.asc
-
Create signed git commit:
git commit -S -m "add <name> pgp key"
-
Push to the commit:
git push origin main
-
Communicate your new key fingerprint to all other participants:
-
Preferred: In person
-
Fallback: via two logically distinct online communications methods (e.g. encrypted chat, and video call)
-
-
Get confirmation they have used
gpg --import <your_key_id>.asc
to import your key from the git repo to the keyrings on workstations they will use to interact with the ceremony repo