[contrib] Remove reference to sf and add doc to verify.sh

This commit is contained in:
MarcoFalke
2016-04-15 12:18:12 +02:00
committed by lateminer
parent 50cd854f18
commit 8efc016485
3 changed files with 10 additions and 3 deletions

View File

@@ -52,5 +52,5 @@ Utilities to generate test vectors for the data-driven Bitcoin tests.
These patches are applied when the automated pull-tester
tests each pull and when master is tested using jenkins.
### [Verify SF Binaries](/contrib/verifysfbinaries) ###
This script attempts to download and verify the signature file SHA256SUMS.asc from SourceForge.
### [Verify Binaries](/contrib/verifybinaries) ###
This script attempts to download and verify the signature file SHA256SUMS.asc from bitcoin.org.

View File

@@ -1,6 +1,13 @@
### Verify Binaries ###
### Verify Binaries
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.
Usage:
```sh
./verify.sh bitcoin-core-0.11.2
./verify.sh bitcoin-core-0.12.0
```