1.1 KiB
1.1 KiB
gpg
GNU Privacy Guard, an OpenPGP encryption and signing tool. More information: https://gnupg.org/documentation/manuals/gnupg/Invoking-GPG.html.
- Create a GPG public and private key interactively:
gpg {{[--full-gen-key|--full-generate-key]}}
- List all keys from the public keyring:
gpg {{[-k|--list-keys]}}
- Sign
doc.txtwithout encryption (writes output todoc.txt.asc):
gpg --clearsign {{doc.txt}}
- Encrypt and sign
doc.txtforalice@example.comandbob@example.com(output todoc.txt.gpg):
gpg {{[-es|--encrypt --sign]}} {{[-r|--recipient]}} {{alice@example.com}} {{[-r|--recipient]}} {{bob@example.com}} {{doc.txt}}
- Encrypt
doc.txtwith only a passphrase (output todoc.txt.gpg):
gpg {{[-c|--symmetric]}} {{doc.txt}}
- Decrypt
doc.txt.gpg(output tostdout):
gpg {{[-d|--decrypt]}} {{doc.txt.gpg}}
- Import a public key:
gpg --import {{public.gpg}}
- Export the public/private key for
alice@example.com(output tostdout):
gpg {{--export|--export-secret-keys}} {{[-a|--armor]}} {{alice@example.com}}