How to GPG-verify an Electrum release
SHA-256 says the file is intact. gpg --verify on Electrum’s .asc says ThomasV signed it. This page is the second check only.
Security Guides · 8 min · Updated Aug 2026 · Expert
To GPG-verify an Electrum installer, download the binary and the matching .asc from download.electrum.org, hash the binary on this page, then run gpg --verify file.asc file with ThomasV’s key — not a key from a YouTube description.
This is not the checksum-vs-GPG explainer. That comparison is already published. Here the job is the Electrum command sequence and the failure strings.
Do this now
- Get installer + .asc from Electrum. From electrum.org → Download, take
electrum-4.5.5-setup.exeandelectrum-4.5.5-setup.exe.asc(or the .dmg/.tar.gz pair). - SHA-256 the binary here first. Drop the installer into the verifier with
electrum_windows. If WalletGuard reports hashes do not match, skip GPG — you already have the wrong file. - Run gpg --verify on your OS. Import
0x6694D8DE7BE8EE56only after the fingerprint matches electrum.org, thengpg --verify electrum-4.5.5-setup.exe.asc electrum-4.5.5-setup.exe. Look for a good signature from that key, not from an unknown key you just created.
Electrum GPG commands that actually run
GnuPG does not run in this browser tab. The hasher only proves integrity. Copy these on Windows (Gpg4win) or macOS/Linux gnupg:
| gpg message | Meaning | Action |
|---|---|---|
| Good signature from … ThomasV | Authenticity OK if fingerprint matches electrum.org | Safe to install after you also hashed |
| BAD signature | File or .asc was altered, or wrong key | Electrum BAD signature |
| Can't check signature: public key not found | You never imported the key | recv-keys, then verify again |
| Good signature from a key you don't trust | WoT / trust not set; still check fingerprint | Do not skip fingerprint vs electrum.org |
gpg --keyserver keys.openpgp.org --recv-keys 6694D8DE7BE8EE56
gpg --fingerprint 6694D8DE7BE8EE56
gpg --verify electrum-4.5.5-setup.exe.asc electrum-4.5.5-setup.exe
What GPG on Electrum cannot do
It cannot prove the Electrum server you later connect to is honest. It cannot prove a plugin is safe. It proves this installer was signed by the key you verified.
WalletGuard cannot run gpg for you and cannot see your keyring.
Frequently asked questions
What command verifies an Electrum installer?
gpg --verify electrum-4.5.5-setup.exe.asc electrum-4.5.5-setup.exe after you imported ThomasV’s key. Always hash the .exe on this page first so you are not verifying a substitute file.
Which key signs Electrum?
Catalog short id 0x6694D8DE7BE8EE56. Confirm the full fingerprint on electrum.org before you mark the key as trusted.
Can WalletGuard verify the .asc in the browser?
No. The in-page tool is SHA-256/MD5 only. Detached GPG signatures need GnuPG on the OS.