Gpg: Difference between revisions
From DWIKI
mNo edit summary |
mNo edit summary |
||
Line 10: | Line 10: | ||
*[https://support.mozilla.org/en-US/kb/digitally-signing-and-encrypting-messages Thunderbird and GPG] | *[https://support.mozilla.org/en-US/kb/digitally-signing-and-encrypting-messages Thunderbird and GPG] | ||
==What is my key ID?== | = Cheatsheet = | ||
== What is my key ID? == | |||
gpg --list-keys you@example.com | gpg --list-keys you@example.com | ||
The bit after the / in the pub line! | The bit after the / in the pub line! | ||
| |||
== Generate key == | |||
gpg --gen-key | gpg --gen-key | ||
==Export public key== | |||
== Export public key == | |||
gpg --export me@example.com > public.key | gpg --export me@example.com > public.key | ||
| |||
== Export private key == | |||
gpg --export-secret-key me@example.com > private.key | gpg --export-secret-key me@example.com > private.key | ||
| |||
== Import private key == | |||
gpg --import private.key | gpg --import private.key | ||
==Renewing subkey== | == Renewing subkey == | ||
https://sites.lafayette.edu/newquisk/archives/504 | [https://sites.lafayette.edu/newquisk/archives/504 https://sites.lafayette.edu/newquisk/archives/504] | ||
==Changing expiration date== | |||
gpg --edit-key me@example.com | |||
gpg> expire | |||
= FAQ = | = FAQ = |
Revision as of 08:46, 7 October 2021
GNU Privacy Guard
Links
- https://www.gnupg.org/ Homepage]
- GPG HOWTO
- GPG Cheat sheet
- https://www.phildev.net/pgp/gpg_moving_keys.html
- Thunderbird and GPG
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
Renewing subkey
https://sites.lafayette.edu/newquisk/archives/504
Changing expiration date
gpg --edit-key me@example.com gpg> expire
FAQ
gpg: decryption failed: No secret key"
Means you're using gpg2 --use-agent, which is broken
gpg: keyserver receive failed: No name
probably means the key was nog found