mirror of
https://github.com/fruworg/fruworg.github.io.git
synced 2025-01-18 11:50:52 +03:00
29 lines
518 B
Markdown
29 lines
518 B
Markdown
---
|
|
title: Памятка по PGP/GPG
|
|
description: gnupg - export, import and renew
|
|
date: 2025-01-12T22:00:00+01:00
|
|
tags: [linux, pgp]
|
|
---
|
|
## Экспорт
|
|
|
|
```bash
|
|
gpg -a --export-secret-keys > private.asc
|
|
gpg --export-ownertrust > trust.txt
|
|
```
|
|
|
|
## Импорт
|
|
|
|
```bash
|
|
gpg --import private.asc
|
|
gpg --import public.asc
|
|
gpg --import-ownertrust trust.txt
|
|
```
|
|
|
|
## Продление
|
|
|
|
```bash
|
|
gpg --list-keys
|
|
gpg --quick-set-expire <fingerprint> 1y
|
|
gpg --export <your@ema.il> | curl -T - https://keys.openpgp.org
|
|
```
|