7.7. Listing Your Keyring

Problem

You want to view the keys on your keyring.

Solution

To list your secret keys:

$ gpg --list-secret-keys

To list your public keys:

$ gpg --list-public-keys

Discussion

Here’s a sample listing of a key on a keyring:

pub  1024D/83FA91C6 2000-07-21 Shawn Smith <smith@example.com>

It lists the following information:

  • Whether the key is secret (sec) or public (pub).[2]

  • The number of bits in the key (1024)

  • The encryption algorithm (D means DSA)

  • The key ID (83FA91C6)

  • The key creation date (2000-07-21)

  • The user ID (Shawn Smith <smith@example.com>)

See Also

gpg(1).

[2] Actually, the key types are secret master signing key (sec), secret subordinate key (ssb), public master signing key (pub), and public subordinate key (sub). Subordinate keys are beyond the scope of this book and you might never need them. Just remember “sec” for secret and “pub” for public.

Get Linux Security Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.