2018-02-06 15:48:56 +01:00
|
|
|
## PGP keys of builders and Developers
|
2016-10-18 20:42:23 +02:00
|
|
|
|
2018-02-06 15:48:56 +01:00
|
|
|
The file `keys.txt` contains fingerprints of the public keys of builders and
|
|
|
|
active developers.
|
2016-10-18 20:42:23 +02:00
|
|
|
|
2021-07-20 05:07:18 +02:00
|
|
|
The keys are mainly used to sign git commits or the build results of builds.
|
2016-10-18 20:42:23 +02:00
|
|
|
|
2018-02-06 15:48:56 +01:00
|
|
|
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,
|
2016-10-18 20:42:23 +02:00
|
|
|
|
|
|
|
```sh
|
|
|
|
gpg --refresh-keys
|
|
|
|
```
|
2018-02-06 15:48:56 +01:00
|
|
|
|
|
|
|
To fetch keys of builders and active developers, feed the list of fingerprints
|
|
|
|
of the primary keys into gpg:
|
|
|
|
|
|
|
|
```sh
|
2021-08-17 10:05:02 +02:00
|
|
|
while read fingerprint keyholder_name; do gpg --keyserver hkps://keys.openpgp.org --recv-keys ${fingerprint}; done < ./keys.txt
|
2018-02-06 15:48:56 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
Add your key to the list if you provided Guix attestations for two major or
|
|
|
|
minor releases of Dash Core.
|