From ded5082e7b04adf2ba3074da6300f93b566300c1 Mon Sep 17 00:00:00 2001 From: mikl Date: Mon, 15 Jun 2026 16:42:52 +0300 Subject: [PATCH] Initial: README --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 README.md 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 +```