v5.1.1
Changelog (Commits)
- bump: version v5.1.1 (4fcf04d)
- docs: document quick search clipboard autofill setting (62e76da)
- feat: make quick search clipboard autofill optional (dff0796)
Security Verification
SHA-256 Checksums
- Lertaro-Setup.exe (x64):
e4538a7f7c6d6a09f35148a39fdbd0535640d5b9dec82be2ddda1ecb278070a6 - Lertaro-Portable.zip (x64):
fcd80481852cce1a2242b774cc4e38a6d29dd0ca5c2e7a073042d79820c5a718 - Lertaro-Setup-arm64.exe (arm64):
458b23512db118f508a6b20a83d9a85bd25de9d91d19ebfd282585cf74c9906b - Lertaro-Portable-arm64.zip (arm64):
18a7f2ef9b4e55a3ea6f2a4fc37cb9126574d0eb8bc32dddff2ffea80a7f3a60
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 Lertaro-Portable.zip.sig Lertaro-Portable.zip
# Expected output: Verified OKTo verify the signature manually in PowerShell (.NET 5.0+):
$zipBytes = [System.IO.File]::ReadAllBytes('Lertaro-Portable.zip')
$sigBytes = [System.IO.File]::ReadAllBytes('Lertaro-Portable.zip.sig')
$ecdsa = [System.Security.Cryptography.ECDsa]::Create()
$pubKeyPem = '-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE117370jTbSPgIwHLntC+Bi3SD6gJ
QfxAySjSpUWa6zy4n0YHVv/ZWXM9zQlF2LTqpQC0iHNdJNH+MKU9UvDMTQ==
-----END PUBLIC KEY-----'
$ecdsa.ImportFromPem($pubKeyPem)
$ecdsa.VerifyData($zipBytes, $sigBytes, [System.Security.Cryptography.HashAlgorithmName]::SHA256, [System.Security.Cryptography.DSASignatureFormat]::Rfc3279DerSequence)
# Expected output: True