Initial: README

This commit is contained in:
mikl 2026-06-15 16:42:52 +03:00
commit ded5082e7b

15
README.md Normal file
View file

@ -0,0 +1,15 @@
# GPG keys backup
Encrypted backup of my GPG keys. **Repo is private** — do not make it public.
## Files
- `public.asc` — public key (safe to share with anyone)
- `private.asc` — encrypted private key, requires passphrase to import
## Restore
```bash
gpg --import public.asc
gpg --import private.asc # asks for passphrase
```