aboutsummaryrefslogtreecommitdiff
path: root/contrib/builder-keys
diff options
context:
space:
mode:
authorDave Scotese <dscotese@litmocracy.com>2022-04-06 08:47:14 -0700
committerGitHub <noreply@github.com>2022-04-06 08:47:14 -0700
commit107582039ac3cbfe072dc761f621c37c48aa2dc1 (patch)
treea452ac5a7e6c5903bd4ed4aef8b6dd4715c2c7f6 /contrib/builder-keys
parent41720a1f540ef3c16a283a6cce6f0a63552a4937 (diff)
downloadbitcoin-107582039ac3cbfe072dc761f621c37c48aa2dc1.tar.xz
doc: Add gpg key import instructions for Windows
This is a single commit to replace the three commits from bitcoin/bitcoin PR #23619.
Diffstat (limited to 'contrib/builder-keys')
-rw-r--r--contrib/builder-keys/README.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/builder-keys/README.md b/contrib/builder-keys/README.md
index 56bd87d0af..a6179d6012 100644
--- a/contrib/builder-keys/README.md
+++ b/contrib/builder-keys/README.md
@@ -19,9 +19,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 Bitcoin Core.