mirror of https://github.com/bitcoin/bitcoin
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.
89 lines
3.2 KiB
89 lines
3.2 KiB
9 years ago
|
### Verify Binaries
|
||
8 years ago
|
|
||
3 years ago
|
#### Preparation
|
||
8 years ago
|
|
||
3 years ago
|
As of Bitcoin Core v22.0, releases are signed by a number of public keys on the basis
|
||
|
of the [guix.sigs repository](https://github.com/bitcoin-core/guix.sigs/). When
|
||
|
verifying binary downloads, you (the end user) decide which of these public keys you
|
||
|
trust and then use that trust model to evaluate the signature on a file that contains
|
||
|
hashes of the release binaries. The downloaded binaries are then hashed and compared to
|
||
|
the signed checksum file.
|
||
11 years ago
|
|
||
3 years ago
|
First, you have to figure out which public keys to recognize. Browse the [list of frequent
|
||
|
builder-keys](https://github.com/bitcoin-core/guix.sigs/tree/main/builder-keys) and
|
||
|
decide which of these keys you would like to trust. For each key you want to trust, you
|
||
|
must obtain that key for your local GPG installation.
|
||
11 years ago
|
|
||
3 years ago
|
You can obtain these keys by
|
||
|
- through a browser using a key server (e.g. keyserver.ubuntu.com),
|
||
|
- manually using the `gpg --keyserver <url> --recv-keys <key>` command, or
|
||
2 years ago
|
- you can run the packaged `verify.py ... --import-keys` script to
|
||
3 years ago
|
have it automatically retrieve unrecognized keys.
|
||
9 years ago
|
|
||
3 years ago
|
#### Usage
|
||
9 years ago
|
|
||
3 years ago
|
This script attempts to download the checksum file (`SHA256SUMS`) and corresponding
|
||
|
signature file `SHA256SUMS.asc` from https://bitcoincore.org and https://bitcoin.org.
|
||
|
|
||
|
It first checks if the checksum file is valid based upon a plurality of signatures, and
|
||
|
then downloads the release files specified in the checksum file, and checks if the
|
||
|
hashes of the release files are as expected.
|
||
|
|
||
|
If we encounter pubkeys in the signature file that we do not recognize, the script
|
||
|
can prompt the user as to whether they'd like to download the pubkeys. To enable
|
||
|
this behavior, use the `--import-keys` flag.
|
||
|
|
||
|
The script returns 0 if everything passes the checks. It returns 1 if either the
|
||
|
signature check or the hash check doesn't pass. An exit code of >2 indicates an error.
|
||
|
|
||
|
See the `Config` object for various options.
|
||
|
|
||
|
#### Examples
|
||
|
|
||
|
Validate releases with default settings:
|
||
|
```sh
|
||
2 years ago
|
./contrib/verify-binaries/verify.py pub 22.0
|
||
|
./contrib/verify-binaries/verify.py pub 22.0-rc2
|
||
3 years ago
|
```
|
||
|
|
||
|
Get JSON output and don't prompt for user input (no auto key import):
|
||
|
|
||
|
```sh
|
||
2 years ago
|
./contrib/verify-binaries/verify.py --json pub 22.0-x86
|
||
3 years ago
|
```
|
||
|
|
||
2 years ago
|
Rely only on local GPG state and manually specified keys, while requiring a
|
||
|
threshold of at least 10 trusted signatures:
|
||
9 years ago
|
```sh
|
||
2 years ago
|
./contrib/verify-binaries/verify.py \
|
||
3 years ago
|
--trusted-keys 74E2DEF5D77260B98BC19438099BAD163C70FBFA,9D3CC86A72F8494342EA5FD10A41BDC3F4FAFF1C \
|
||
2 years ago
|
--min-good-sigs 10 pub 22.0-x86
|
||
9 years ago
|
```
|
||
8 years ago
|
|
||
8 years ago
|
If you only want to download the binaries of certain platform, add the corresponding suffix, e.g.:
|
||
|
|
||
|
```sh
|
||
2 years ago
|
./contrib/verify-binaries/verify.py pub 22.0-osx
|
||
|
./contrib/verify-binaries/verify.py pub 22.0-rc2-win64
|
||
8 years ago
|
```
|
||
|
|
||
2 years ago
|
If you do not want to keep the downloaded binaries, specify the cleanup option.
|
||
8 years ago
|
|
||
|
```sh
|
||
2 years ago
|
./contrib/verify-binaries/verify.py pub --cleanup 22.0
|
||
2 years ago
|
```
|
||
|
|
||
|
Use the bin subcommand to verify all files listed in a local checksum file
|
||
|
|
||
|
```sh
|
||
2 years ago
|
./contrib/verify-binaries/verify.py bin SHA256SUMS
|
||
2 years ago
|
```
|
||
|
|
||
|
Verify only a subset of the files listed in a local checksum file
|
||
|
|
||
|
```sh
|
||
2 years ago
|
./contrib/verify-binaries/verify.py bin ~/Downloads/SHA256SUMS \
|
||
2 years ago
|
~/Downloads/bitcoin-24.0.1-x86_64-linux-gnu.tar.gz \
|
||
|
~/Downloads/bitcoin-24.0.1-arm-linux-gnueabihf.tar.gz
|
||
8 years ago
|
```
|