github SwiftList/SwiftList v3.2.5

latest releases: v4.2.2, v4.2.1, v4.2.0...
one month ago

Changelog (Commits)

  • bump: version v3.2.5 (2e24185)
  • fix: replace the search box's popping loading spinner with a breathing logo icon (a6e019c)

Security Verification

SHA-256 Checksums

  • SwiftList-Setup.exe: 410ce9f49e51b5cd83ecfbcc12b28604f73e12d6a3c2ca7e5760d7048c783eb2
  • SwiftList-Portable.zip: dd51f82f56f567790782553841ad3b183fb3672bea88950d30115d942d43f7a3

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 OK

To 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

Don't miss a new SwiftList release

NewReleases is sending notifications on new releases.