I just created a key-pair locally on my linux machine with the gpg command:
gpg --gen-key
Then I tried to display the information about my key-pair with the gpg command:
gpg --list-keys
The long alpha-numeric number outputed by the above command is (from what I understand from reading the doc), the fingerprint of the public key of the pair, which is the result of applying a hash function on the public key.
Is this correct?
How can I see the actual public and private keys of the pair I generated? I know this isn't directly useful for encrypting or signing, I'm just curious to see what they look like
Thanks
--output
or let it print to stdout... Win10, GnuPG 2.4.5 (bundled w/ Git for Windows). Hmmm... – Throw