This commit is contained in:
Malin Freeborn 2023-10-18 23:14:09 +02:00
parent 6525ad85ad
commit 69d6c1ab53
Signed by: andonome
GPG Key ID: 52295D2377F4D70F
1 changed files with 4 additions and 4 deletions

View File

@ -82,7 +82,7 @@ This is a fingerprint.
You can now decide the trust level (this stays on your computer). You can now decide the trust level (this stays on your computer).
```bash ```bash
gpg --edit-key *CD30421FD825696BD95F1FF644C62C57B790D3CF* gpg --edit-key CD30421FD825696BD95F1FF644C62C57B790D3CF
``` ```
Once you're in the interface, type `trust`. Once you're in the interface, type `trust`.
@ -94,7 +94,7 @@ gpg --sign-key alice@posteo.net
Then send those trusted keys up to a server, so people can see you have verified them: Then send those trusted keys up to a server, so people can see you have verified them:
```bash ```bash
gpg --send-keys *024C6B1C84449BD1CB4DF7A152295D2377F4D70F* gpg --send-keys 024C6B1C84449BD1CB4DF7A152295D2377F4D70F
``` ```
# Refresh Keys # Refresh Keys
@ -108,12 +108,12 @@ gpg --refresh-keys
Your public key: Your public key:
```bash ```bash
gpg --output *me*.gpg --armor --export gpg --output me.gpg --armor --export
``` ```
or or
```bash ```bash
gpg --export -a *person@email.tld* > *my_key*.pub gpg --export -a person@email.tld > my_key.pub
``` ```