mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
6751add2ea
304ae6dc8e2cd63142d34d190f93e95cbe83247a doc: remove mention of "proper signing key" (fanquake) Pull request description: This key is no-longer in use: https://lists.linuxfoundation.org/pipermail/bitcoin-core-dev/2023-February/000115.html > Please remove it from verification pipelines. ACKs for top commit: hebasto: ACK 304ae6dc8e2cd63142d34d190f93e95cbe83247a Tree-SHA512: 3dfd221a48f69ac56b4568db06b5d5b5d6a60b7d027a26157912219a2073589a0a3934cb30e11a161d48db55d3a637338f96617e3f3b92cb9e60e0d1d1dd372a
31 lines
960 B
Markdown
31 lines
960 B
Markdown
### Verify Binaries
|
|
|
|
#### Usage:
|
|
|
|
This script attempts to download the signature file `SHA256SUMS.asc` from https://bitcoin.org.
|
|
|
|
It first checks if the signature passes, and then downloads the files specified in the file, and checks if the hashes of these files match those that are specified in the signature file.
|
|
|
|
The script returns 0 if everything passes the checks. It returns 1 if either the signature check or the hash check doesn't pass. If an error occurs the return value is 2.
|
|
|
|
|
|
```sh
|
|
./verify.py bitcoin-core-0.11.2
|
|
./verify.py bitcoin-core-0.12.0
|
|
./verify.py bitcoin-core-0.13.0-rc3
|
|
```
|
|
|
|
If you only want to download the binaries of certain platform, add the corresponding suffix, e.g.:
|
|
|
|
```sh
|
|
./verify.py bitcoin-core-0.11.2-osx
|
|
./verify.py 0.12.0-linux
|
|
./verify.py bitcoin-core-0.13.0-rc3-win64
|
|
```
|
|
|
|
If you do not want to keep the downloaded binaries, specify anything as the second parameter.
|
|
|
|
```sh
|
|
./verify.py bitcoin-core-0.13.0 delete
|
|
```
|