aboutsummaryrefslogtreecommitdiff
path: root/contrib/verifybinaries/README.md
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2016-04-25 13:31:11 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2016-04-25 13:31:22 +0200
commitc4e8390047a1ba14e32ac4f3e3ac425eb5824f21 (patch)
treeebb2e63eba4a581379d37875acee16efd0a9e399 /contrib/verifybinaries/README.md
parentf9c2ac72327e611361cb6cd707b770f161238701 (diff)
parentf1544700703a442191ac1dfaae7f31b04ba7b12b (diff)
downloadbitcoin-c4e8390047a1ba14e32ac4f3e3ac425eb5824f21.tar.xz
Merge #7881: Update release process
f154470 [contrib] Remove reference to sf and add doc to verify.sh (MarcoFalke) 182bec4 contrib: remove hardcoded version from verify.sh (Wladimir J. van der Laan) c907f4d doc: Update release process (Wladimir J. van der Laan)
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
+```