• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..31-Jul-2018-

README.mdH A D31-Jul-2018558 149

verify.shH A D31-Jul-20183.4 KiB12373

README.md

1### Verify Binaries
2This script attempts to download the signature file `SHA256SUMS.asc` from https://bitcoin.org.
3
4It 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.
5
6The 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.
7
8Usage:
9
10```sh
11./verify.sh bitcoin-core-0.11.2
12./verify.sh bitcoin-core-0.12.0
13```
14