GPG Verify Signature
Last updated
We can verify a signed file with the following command(s) -
gpg --import public-key.gpgIf 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