commit ded5082e7b04adf2ba3074da6300f93b566300c1 Author: mikl Date: Mon Jun 15 16:42:52 2026 +0300 Initial: README diff --git a/README.md b/README.md new file mode 100644 index 0000000..1079427 --- /dev/null +++ b/README.md @@ -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 +```