This document outlines how to verify Igloo-desktop release binaries. Igloo uses dual-layer security for maximum protection:
- GPG signing: All release artifacts are signed with developer keys
- macOS code signing: macOS apps are signed with Apple Developer ID and notarized
Each release includes verification files:
igloo-signing-key.asc- Developer's public GPG keySHA256SUMS- File checksums for all platformsSHA256SUMS.asc- GPG signature for checksums
To verify a release:
-
Import the public key:
curl -sL https://github.com/FROSTR-ORG/igloo/releases/download/VERSION/igloo-signing-key.asc | gpg --import -
Verify the checksums signature:
curl -sL https://github.com/FROSTR-ORG/igloo/releases/download/VERSION/SHA256SUMS.asc | gpg --verify -
Verify file checksums:
curl -sL https://github.com/FROSTR-ORG/igloo/releases/download/VERSION/SHA256SUMS | shasum -a 256 -c
Replace VERSION with the version you're verifying (e.g., v0.1.3).
macOS apps include additional Apple-verified signatures:
-
Verify Apple Developer ID signature:
codesign -dv --verbose=4 /path/to/Igloo.app
-
Verify notarization:
spctl -a -vv /path/to/Igloo.app
-
Check app entitlements:
codesign -d --entitlements :- /path/to/Igloo.app
A properly signed and notarized macOS app will show:
Status: acceptedinspctloutputDeveloper ID Application: Austin KelsayincodesignoutputNotarization: accepted(for macOS 10.15+)
You can also verify the Git tag and commit signatures:
-
Verify the Git tag signature:
git fetch origin --tags git verify-tag VERSION # Replace with the version you're verifying -
Verify the commit signature:
git verify-commit VERSION^{commit}
GPG: Good signature, but key is not certified
This warning means you've verified the signature but haven't personally certified the key. You can:
- Verify the key fingerprint through other channels (GitHub, Twitter, etc.)
- Sign the key if you trust it:
gpg --sign-key austinkelsay@protonmail.com
GPG: Can't check signature: No public key
You need to import the developer's public key using the steps above. The key is included with each release for convenience.
"Igloo is damaged and can't be opened"
This indicates a code signature issue. For releases v0.1.2 and later (including the current v0.1.3), this shouldn't occur as apps are properly signed and notarized. If you encounter this:
- Verify you downloaded from the official GitHub releases page
- Check the code signature:
codesign -dv /path/to/Igloo.app - Report the issue if the signature is invalid
"Cannot verify developer" or "unidentified developer"
This occurs with older releases (v0.1.1 and earlier) that used ad-hoc signing. Upgrade to the latest release for proper code signing.
- Always download release files directly from the official GitHub releases page
- Cross-reference the signing key fingerprint through multiple sources
- For macOS users: Both GPG and code signature verification provide complementary security
- For Windows/Linux users: GPG verification is the primary security mechanism
- Report any verification issues immediately by opening a GitHub issue