Files
blackcoin-more/contrib/gitian-keys/README.md
Michel van Kessel 7fac03a78d update gitian keys
2020-12-20 12:33:44 +01:00

24 lines
741 B
Markdown

## PGP keys of Gitian builders and Developers
The keys.txt contains the public keys of Gitian builders and active developers.
The keys are mainly used to sign git commits or the build results of Gitian
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,
```sh
gpg --refresh-keys
```
To fetch keys of Gitian builders and active developers, feed the list of
fingerprints of the primary keys into gpg:
```sh
while read fingerprint keyholder_name; do gpg --keyserver hkp://pool.sks-keyservers.net --recv-keys ${fingerprint}; done < ./keys.txt
```