How to verify PGP signature with signing key
Assuming you have GPG installed:
gpg --import signing_key.pub
gpg --verify signed_file.sig
Where signing_key.pub
is the public key, and signed_file.sig
is the detached signature for the file (in the same directory as the signed file).