Gpg: Difference between revisions
From DWIKI
mNo edit summary |
|||
Line 5: | Line 5: | ||
*[http://www.dewinter.com/gnupg_howto/english/GPGMiniHowto.html GPG HOWTO] | *[http://www.dewinter.com/gnupg_howto/english/GPGMiniHowto.html GPG HOWTO] | ||
*[http://irtfweb.ifa.hawaii.edu/~lockhart/gpg/gpg-cs.html GPG Cheat sheet] | *[http://irtfweb.ifa.hawaii.edu/~lockhart/gpg/gpg-cs.html GPG Cheat sheet] | ||
*[https://www.phildev.net/pgp/gpg_moving_keys.html Moving/Copying your PGP Keys] | |||
=Cheatsheet= | =Cheatsheet= |
Revision as of 13:37, 1 June 2016
GNU Privacy Guard
Links
Cheatsheet
What is my key ID?
gpg --list-keys you@example.com
The bit after the / in the pub line!
Generate key
gpg --gen-key
Export public key
gpg --export me@example.com > public.key
Export private key
gpg --export-secret-key me@example.com > private.key
Import private key
gpg --import private.key