Reputation: 4937
How can I get the key signature from a GPG Public Key? For example, I need a signature for Spotify's public key here: https://download.spotify.com/debian/pubkey.gpg
Something like this, but for GPG Keys.
This is as far as I've got:
$ gpg pubkey.gpg
pub 4096R/130D1D45 2019-07-15 Spotify Public Repository Signing Key <[email protected]>
Upvotes: 2
Views: 4358
Reputation: 7320
Download the key, import it, extract the email and run gpg --fingerprint
.
cd ~
curl -O https://download.spotify.com/debian/pubkey.gpg
gpg --import ~/pubkey.gpg
gpg --fingerprint [email protected]
# 2EBF 997C 15BD A244 B6EB F5D8 4773 BD5E 130D 1D45
Upvotes: 4