add the old snippet md files

This commit is contained in:
Travis Shears 2025-06-05 16:20:57 +02:00
parent fc0dd204c7
commit bcf8313a4b
110 changed files with 3048 additions and 0 deletions

View file

@ -0,0 +1,30 @@
---
date: 2023-10-27T22:00:00.000Z
title: How to trust gpg keys
draft: false
snippet_types:
- gpg
seo_description: How to trust gpg keys
---
After moving some GPG keys to a new computer I kept getting these trust warnings.
```
It is NOT certain that the key belongs to the person named
in the user ID.If you * really * know what you are doing,
you may answer the next question with yes.
Use this key anyway? (y/N)
```
To solve this one has to edit the key and set a trust level.
```javascript
$ gpg--edit - key 't@coolsite.com'
trust
5
```
## Source
* [yanhan](https://yanhan.github.io/posts/2014-03-04-gpg-how-to-trust-imported-key/)