GPG Verify Signature
We can verify a signed file with the following command(s) -
Import Public Key
$ gpg --import public-key.gpgVerify Signature
If the signature is in seperate file (as created with the --detach-sign option) -
$ gpg --verify myfile.tar.gz.sig myfile.tar.gzIf the signature is appended to the file (as created with the --sign option) -
$ gpg --verify myfile.tar.gz.gpgSource: WikiHow
Last updated