Reputation: 1
I am looking for an offline way to view the full fingerprint of the people who signed a public-key.
me@my-PC:~$ gpg --list-sig [email protected]
pub 4096R/19ED3242 2015-08-06 [expires: 2016-08-05]
uid Bilbo Baggins <[email protected]>
sig 3 19ED3242 2015-08-06 Bilbo Baggins <[email protected]>
sig L 97F6C54A 2015-08-07 Frodo Baggins <[email protected]>
uid [jpeg image of size 13199]
sig 3 19ED3242 2015-08-06 Bilbo Baggins <[email protected]>
sub 4096R/A182F292 2015-08-06 [expires: 2016-08-05]
sig 19ED3242 2015-08-06 Bilbo Baggins <[email protected]>
I only see the 8-byte fingerprint of Frodo "97F6C54A" but how do I view the full fingerprint?
Upvotes: 0
Views: 1654
Reputation: 38732
Run gpg --fingerprint [key-id]
to resolve a key ID (or also user ID) to a key from your local keyring.
Upvotes: 1