xmr-btc-swap/docs/pages/getting_started/verify_tauri_signature.mdx
2025-10-13 19:16:58 +02:00

32 lines
No EOL
1,017 B
Text

# Verifying Release Binaries
Each release includes `.asc` signature files alongside the binaries.
### 1. Import the signing key
```bash
# Download the key from GitHub
wget https://raw.githubusercontent.com/eigenwallet/core/master/utils/gpg_keys/binarybaron_and_einliterflasche.asc
# Import it
gpg --import binarybaron_and_einliterflasche.asc
```
### 2. Download and verify the signature
```bash
# Download both the binary and its signature
wget https://github.com/eigenwallet/core/releases/download/3.1.3/eigenwallet_3.1.3_aarch64.dmg
wget https://github.com/eigenwallet/core/releases/download/3.1.3/eigenwallet_3.1.3_aarch64.dmg.asc
# Verify the signature
gpg --verify eigenwallet_3.1.3_aarch64.dmg.asc eigenwallet_3.1.3_aarch64.dmg
```
Successful verification shows something like this:
```
gpg: Signature made Sat Oct 11 20:26:07 2025 CEST
gpg: using RSA key 0518460FEBEC1DA14A155A7B44AE6F0B166AAD5A
gpg: Good signature from "binarybaron-flatpak <binarybaron@protonmail.com>" [ultimate]
```