When you create or generate a new GPG or GnuPG key pair, it is stored in your key ring. Keys stored within the key ring can be listed using using the command as below in the Linux terminal. $ gpg --list-public-keys <enter> /home/user/.gnupg/pubring.gpg ------------------------------ pub 4096R/3949C65A 2014-11-28 [expires: 2015-11-28] uid John N. Doe <john.doe@emaildomain.com> sub … Continue reading How to list GnuPG or GPG public keys
Tag: GNU Privacy Guard
How to list GnuPG or GPG secret keys
When you create or generate a new GPG or GnuPG key pair, it is stored in your key ring. Keys stored within the key ring can be listed using using the command as below in the Linux terminal. $ gpg --list-secret-keys <enter> /home/user/.gnupg/secring.gpg ------------------------------ sec 4096R/3949C65A 2014-11-28 [expires: 2015-11-28] uid John N. Doe <john.doe@emaildomain.com> ssb … Continue reading How to list GnuPG or GPG secret keys
How to create a GNU Privacy Guard (GPG) GnuPG key pair for yourself
Many of us would like to protect our data stored in files, emails, online and elsewhere. The point is, that with the kind of investigative eyes on user data worldwide, we need a robust mechanism that does not leak. One of those mechanisms is PGP - Pretty Good Privacy. Pretty Good Privacy or PGP as … Continue reading How to create a GNU Privacy Guard (GPG) GnuPG key pair for yourself