1
0
Fork 0

Short statement on the Ovarit situation

This commit is contained in:
Lethe Beltane 2022-10-24 07:51:16 -05:00
parent 2639aba46c
commit 7728287dcd
Signed by: lethe
GPG key ID: 21A3DA3DE29CB63C
24 changed files with 529 additions and 69 deletions

38
garden/gpg.gmi Executable file
View file

@ -0,0 +1,38 @@
# Quick guide to GPG
## Generate a key
```
gpg --generate-key
```
## Import an existing key
```
gpg --import key.txt
```
## Export a key
```
gpg --export -a person@domain.tld public.gpg
gpg --export-secret-keys -a person@domain.tld
```
## Encrypt a file using a specific key
```
gpg --encrypt -a -r person@domain.tld file.ext
```
## Sign a file using a specific key
```
gpg --clear-sign -a file.ext
```
## List all keys in the keyring
```
gpg --list-keys
```