From d529751f47dda9ff35f3ae78e80fbdff0e1e50ca Mon Sep 17 00:00:00 2001 From: fanquake Date: Wed, 20 Apr 2022 11:40:24 +0100 Subject: [PATCH] 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 --- contrib/builder-keys/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/contrib/builder-keys/README.md b/contrib/builder-keys/README.md index 8b4303d00a..71a7d4ee97 100644 --- a/contrib/builder-keys/README.md +++ b/contrib/builder-keys/README.md @@ -18,9 +18,15 @@ gpg --refresh-keys To fetch keys of builders and active developers, feed the list of fingerprints of the primary keys into gpg: +On \*NIX: ```sh 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.