0
I've been playing around learning more about Bitcoin and was following this tutorial from 21.co on digital signatures.
When I open the SHA256SUMS.asc file and try to verify the packages, I get different hashes than what's in the file.
curl -O https://bitcoin.org/bin/bitcoin-core-0.11.0.tar.gz
shasum -a 256 bitcoin-core-0.11.0.tar.gz
This gives the following output:
69b00985c84e6633cc2e518914436ce55666cc10d1edf15ee442758d9f8d5219 bitcoin-core-0.11.0.tar.gz
Which is very different from what is in the file:
c7a5e496d7c31bdc10d2c0c79dfcf9aca69f9520579917c7d3e95868b2127707 bitcoin-0.11.0-osx64.tar.gz
NOTE: I'm using a different command then what is mentioned in the tutorial for checking the hashes. shasum -a 256 instead of sha256sum.
Am I doing something wrong here?