mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-16 05:13:11 +01:00
27 lines
561 B
Markdown
27 lines
561 B
Markdown
# GPG
|
|
|
|
GPG is the standard encryption tool.
|
|
|
|
## Use Cases
|
|
|
|
gpg can be used to:
|
|
|
|
- Sign things with your signing subkey
|
|
- Read encrypted messages sent to you with your encryption subkey
|
|
- Send encrypted messages to other people with their public key
|
|
- Verify the authenticity of someone's messages and other data with their public key
|
|
|
|
You should not use gpg if:
|
|
|
|
- You should use gpg.
|
|
|
|
## Usage
|
|
|
|
Export `GPG_TTY` in your shell's init script. This is how you would do it in [fish](/fish):
|
|
|
|
```fish
|
|
export GPG_TTY=(tty)
|
|
```
|
|
|
|
[gnupg]: https://github.com/gpg/gnupg
|