gpg --list-sigs
gives me somethings like the following (I edited the output only to show the interesting/different rows):
pub 2048R/4ACE309C 2016-11-01
uid lala_test2 <lala2@test.org>
sig 3 4ACE309C 2016-11-01 lala_test2 <lala2@test.org>
uid test_key <test_key@test.org>
sig 3 4ACE309C 2016-11-01 lala_test2 <lala2@test.org>
sub 2048R/EA9FDC87 2016-11-01
sig 4ACE309C 2016-11-01 lala_test2 <lala2@test.org>
sig 2 03A9DA1F 2014-02-11 [User ID not found]
sig 3 5B51CBCF 2011-10-25 [User ID not found]
sig 3 06B47049 2011-10-26 [User ID not found]
sig 3 00C85EF1 2011-10-31 [User ID not found]
sig 3 5A4BEDCE 2011-10-06 [User ID not found]
sig 1 F2648165 2011-10-07 [User ID not found]
sig X CA57AD7C 2005-07-31 [User ID not found]
sig X CA57AD7C 2005-08-01 [User ID not found]
sig 2 X DC79FAC9 2003-09-26 [User ID not found]
sig 7EE2682F 2016-06-03 [User ID not found]
rev 7EE2682F 2016-06-03 [User ID not found]
The tags in the first column means:
- pub -> public key
- uid -> user id
- sig -> signature, from another person saying that he trust the key under pub tag
- sub -> subkey
- rev -> is this a signature whose key was revoked by the signer?
2048R -> 2048 is the key size and R for RSA. There is also the short key id, the creation date, and the last one is the user ID when available.
What do the numbers in a sig row after first column mean?