Changelog (Commits)
- bump: version v2.7.3 (b5d0d24)
- fix: prevent Quick Navigation from confirming a stale file dialog (47d356f)
Security Verification
SHA-256 Checksums
- SwiftList-Setup.exe:
d67b31b8ed708a125308a3c2679906ab29c5e3d42f9ce6556d231b91986fb23f - SwiftList-Portable.zip:
5b82d7ae8ccbc9467cebdff9635cd9172543e7ad786549308e98fc6f498c93a0
Signature Verification (ECDsa NistP256)
The portable ZIP release is signed using our official release key.
To verify the signature manually using OpenSSL:
# 1. Save the public key shown above to 'public_key.pem'
# 2. Run the following command:
openssl dgst -sha256 -verify public_key.pem -signature SwiftList-Portable.zip.sig SwiftList-Portable.zip
# Expected output: Verified OKTo verify the signature manually in PowerShell (.NET 5.0+):
$zipBytes = [System.IO.File]::ReadAllBytes('SwiftList-Portable.zip')
$sigBytes = [System.IO.File]::ReadAllBytes('SwiftList-Portable.zip.sig')
$ecdsa = [System.Security.Cryptography.ECDsa]::Create()
$pubKeyPem = '-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEA8CUYlnSks5CMNM3wPz9NTMg8kbs
tEcU4mtgkW0OScTVRO3IhEb6j4H4cjgvM/gyM2sumFpbBR9+VtvVr46nFQ==
-----END PUBLIC KEY-----'
$ecdsa.ImportFromPem($pubKeyPem)
$ecdsa.VerifyData($zipBytes, $sigBytes, [System.Security.Cryptography.HashAlgorithmName]::SHA256, [System.Security.Cryptography.DSASignatureFormat]::Rfc3279DerSequence)
# Expected output: True