> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/linux/gpg/gpg-trust-key.md).

# GPG Trust Key

After importing a GPG key (on how to, refer to [link](/linux/gpg/fix-inappropriate-ioctl-for-device-error.md)), we need to set trust level for the same.

### Process

```bash
gpg --edit-key {KEY}
trust
5
yes
save
```

***Source:*** [***Security - StackExchange***](https://security.stackexchange.com/a/129477)
