starc
starc copied to clipboard
Signed Downloads
Would it be possible to sign download files so end users can verify integrity before installing? Possibly with something like GPG or OpenSSH?
Thanks
Hello, I don't know a lot about this process and requirements. Maybe you can provide some information about it, or help us implement it (you can find Linux build script here)?
Hello! https://gnupg.org is a good choice.
- Create a pair of GPG keys.
- For the new release, use your private key to create a file signature. The command might look like this: gpg --detach-sign --armor your_file. This will create a signature file with the extension .asc.
- Provide your public key to users so they can verify the signature.
- Users can verify the signature using your public key and the command: gpg --verify your_file.asc your_file If the signature is correct and the key is trusted, GPG will confirm that the file has not been altered.