aboutsummaryrefslogtreecommitdiff
path: root/contrib/verifybinaries/README.md
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-04-15 12:18:12 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2016-04-25 13:29:54 +0200
commitf1544700703a442191ac1dfaae7f31b04ba7b12b (patch)
tree26bc59021cc362807571db33bc75e0a939d9ceba /contrib/verifybinaries/README.md
parent182bec427946d4ce951e8572130c903f0131447e (diff)
downloadbitcoin-f1544700703a442191ac1dfaae7f31b04ba7b12b.tar.xz
[contrib] Remove reference to sf and add doc to verify.sh
Diffstat (limited to 'contrib/verifybinaries/README.md')
-rw-r--r--contrib/verifybinaries/README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/contrib/verifybinaries/README.md b/contrib/verifybinaries/README.md
new file mode 100644
index 0000000000..8970f3daa4
--- /dev/null
+++ b/contrib/verifybinaries/README.md
@@ -0,0 +1,13 @@
+### 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
+```