bitcoin/contrib/builder-keys
2022-04-11 16:07:17 +01:00
..
keys.txt builder-keys: Add will8clark 2022-04-11 16:07:17 +01:00
README.md contrib: use hkps://keys.openpgp.org to retrieve builder keys 2021-08-17 08:59:04 +08:00

PGP keys of builders and Developers

The file keys.txt contains fingerprints of the public keys of builders and active developers.

The associated keys are mainly used to sign git commits or the build results of Guix builds.

The most recent version of each pgp key can be found on most pgp key servers.

Fetch the latest version from the key server to see if any key was revoked in the meantime. To fetch the latest version of all pgp keys in your gpg homedir,

gpg --refresh-keys

To fetch keys of builders and active developers, feed the list of fingerprints of the primary keys into gpg:

while read fingerprint keyholder_name; do gpg --keyserver hkps://keys.openpgp.org --recv-keys ${fingerprint}; done < ./keys.txt

Add your key to the list if you provided Guix attestations for two major or minor releases of Bitcoin Core.