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.

29 lines
953 B

  1. ## PGP keys of Gitian builders and Tendermint Developers
  2. The file `keys.txt` contains fingerprints of the public keys of Gitian builders
  3. and active developers.
  4. The associated keys are mainly used to sign git commits or the build results
  5. of Gitian builds.
  6. The most recent version of each pgp key can be found on most PGP key servers.
  7. Fetch the latest version from the key server to see if any key was revoked in
  8. the meantime.
  9. To fetch the latest version of all pgp keys in your gpg homedir,
  10. ```sh
  11. gpg --refresh-keys
  12. ```
  13. To fetch keys of Gitian builders and active core developers, feed the list of
  14. fingerprints of the primary keys into gpg:
  15. ```sh
  16. while read fingerprint keyholder_name; \
  17. do gpg --keyserver hkp://subset.pool.sks-keyservers.net \
  18. --recv-keys ${fingerprint}; done < ./keys.txt
  19. ```
  20. Add your key to the list if you are a Tendermint core developer or you have
  21. provided Gitian signatures for two major or minor releases of Tendermint.