dash/contrib/builder-keys
fanquake d529751f47
Merge bitcoin/bitcoin#24788: doc: Add gpg key import instructions for Windows
107582039ac3cbfe072dc761f621c37c48aa2dc1 doc: Add gpg key import instructions for Windows (Dave Scotese)

Pull request description:

  This is a single commit to replace the three commits from #23916

  I propose this change so that Windows users can more easily import signers' keys.

ACKs for top commit:
  sipsorcery:
    tACK 107582039ac3cbfe072dc761f621c37c48aa2dc1.

Tree-SHA512: 7d4ec77ce10f751748c49f1453fa8baf0976b15af4f87dc27f4e2715ad73fbd7dc1f07fcf3e660d63a6b9eb895a5e4105774613d39a2328f73b92d9e6cff4ebd
2024-10-29 13:01:23 -05:00
..
codablock.pgp
dustinface.pgp
gladcow.pgp
kittywhiskers.pgp chore: add builder key for kittywhiskers 2024-09-17 16:25:14 +00:00
knst.pgp chore: add builder key for knst (#5786) 2023-12-22 14:16:45 -06:00
nmarley.pgp
pasta.pgp chore: update pasta gpg key to reflect new subkeys 2024-09-27 12:54:58 -05:00
README.md Merge bitcoin/bitcoin#24788: doc: Add gpg key import instructions for Windows 2024-10-29 13:01:23 -05:00
schinzelh.pgp
thephez.pgp
udjinm6.pgp chore: update udjin's expired builder's key 2024-01-06 19:25:49 -06:00

PGP keys of builders and Developers

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

The keys are mainly used to sign git commits or the build results of 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:

On *NIX:

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

On Windows (requires Gpg4win >= 4.0.0):

FOR /F "tokens=1" %i IN (keys.txt) DO gpg --keyserver hkps://keys.openpgp.org --recv-keys %i

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