You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
868 B
28 lines
868 B
3 years ago
|
## PGP keys of builders and Developers
|
||
8 years ago
|
|
||
3 years ago
|
The file `keys.txt` contains fingerprints of the public keys of builders and
|
||
|
active developers.
|
||
8 years ago
|
|
||
6 years ago
|
The associated keys are mainly used to sign git commits or the build results
|
||
3 years ago
|
of Guix builds.
|
||
8 years ago
|
|
||
7 years ago
|
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,
|
||
8 years ago
|
|
||
|
```sh
|
||
|
gpg --refresh-keys
|
||
|
```
|
||
7 years ago
|
|
||
3 years ago
|
To fetch keys of builders and active developers, feed the list of fingerprints
|
||
|
of the primary keys into gpg:
|
||
7 years ago
|
|
||
|
```sh
|
||
|
while read fingerprint keyholder_name; do gpg --keyserver hkp://subset.pool.sks-keyservers.net --recv-keys ${fingerprint}; done < ./keys.txt
|
||
|
```
|
||
|
|
||
3 years ago
|
Add your key to the list if you provided Guix attestations for two major or
|
||
7 years ago
|
minor releases of Bitcoin Core.
|