Created
February 23, 2014 23:56
-
-
Save timharding/9179136 to your computer and use it in GitHub Desktop.
Quick instructions for verifying a downloaded file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# verifying an md5 checksum... | |
md5 electrum-1.9.7.dmg | |
# then compare checksum | |
# verifying a gpg sig... | |
# 1. find the hex key id for the signer's public key | |
gpg --recv-keys 0x22453004695506FD | |
# 2. download the file and the .asc signature file for that file then | |
# 3. validate the file | |
gpg --verify electrum-1.9.7.dmg{.asc.txt,} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment