gpg
GNU Privacy Guard. Seegpg2for GNU Privacy Guard 2. Most operating systems symlinkgpgtogpg2. More information: https://gnupg.org.
- Create a GPG public and private key interactively:
gpg --full-generate-key - Sign
doc.txtwithout encryption (writes output todoc.txt.asc):gpg --clearsign {{doc.txt}} - Encrypt and sign
doc.txtfor alice@example.com and bob@example.com (output todoc.txt.gpg):gpg --encrypt --sign --recipient {{alice@example.com}} --recipient {{bob@example.com}} {{doc.txt}} - Encrypt
doc.txtwith only a passphrase (output todoc.txt.gpg):gpg --symmetric {{doc.txt}} - Decrypt
doc.txt.gpg(output to stdout):gpg --decrypt {{doc.txt.gpg}} - Import a public key:
gpg --import {{public.gpg}} - Export public key for alice@example.com (output to stdout):
gpg --export --armor {{alice@example.com}} - Export private key for alice@example.com (output to stdout):
gpg --export-secret-keys --armor {{alice@example.com}}
This is a tldr pages (source, CC BY 4.0) web wrapper for cheat-sheets.org. All commands, popular commands, most used linux commands. Referrals. Progressive Web Application (PWA) version to install on your device.