Skip to content

Encrypted Backups: The 3-2-1 Sovereign Standard and the Audit of Node Persistence

Sovereign Audit: This logic was last verified in March 2026. Backup Standard: 3-2-1 (3 copies, 2 media, 1 offsite). Encryption: AES-256-CTR confirmed. Deduplica

Digital sovereignty editorial illustration for The Unhacked
Affiliate disclosure: Some links in this article are affiliate links. If you buy through them we may earn a commission at no extra cost to you — it never changes what we recommend or how we rank it. Read our full affiliate disclosure.

The drive makes a sound it has never made before — a soft click, then nothing. Your laptop won’t see it. Inside are the photos, the tax records, the wallet seed, the decade of work you always meant to back up properly. You reach for the cloud copy and remember you deleted the original last month, so the sync deleted it everywhere. The thing you were sure was safe was only ever in one place, pretending to be in two.

The short version: Your files are not safe because they’re “in the cloud” or “on a USB stick.” Real safety follows the 3-2-1 standard — 3 copies of your data, on 2 different types of media, with 1 copy stored offsite and encrypted. Pair it with a client-side encryption tool like Restic or Borg (both use AES-256 and only your passphrase decrypts) and your data survives hardware failure, ransomware, an account ban, and disaster. The catch nobody mentions: a backup you’ve never test-restored is not a backup — it’s a hope.

Why cloud sync is not a backup: the one-copy trap

Here’s the trap most people fall into without ever noticing. Google Drive, Dropbox, OneDrive — none of these are backups. They’re sync engines, and sync is the opposite of safety.

Free download: The Sovereign Toolkit Blueprint 2026

The 12-point setup for a private, secure, high-output digital life — in one afternoon. No spam, unsubscribe anytime.

Delete a file locally and the deletion propagates everywhere. Get your account locked and you lose access to all of it at once. Worse: if ransomware encrypts files on your machine, the sync faithfully copies that corruption to every device you own. You think you have redundancy. You have a single failure, mirrored.

The next step is small. For the offsite copy, the route we use is pCloud — its client-side encrypted storage encrypts files on your device before upload, so even the provider can’t read them. One setup, then it runs in the background. Affiliate link — we may earn a commission; our verdict is not for sale.

The unhacked operator separates sync from backup. Sync is for convenience. Backup is for survival — and they are not the same system.

The 3-2-1 standard explained: three, two, one

This is the rule that turns “I hope” into “I know.”

  • 3 copies: Three complete versions of your data. One on your working device, one on local backup hardware you control, one offsite.
  • 2 media types: Don’t put all three on identical hardware. If every copy lives on the same model of drive from the same manufacturing batch, one design flaw takes out all three at once. Mix it — a portable SSD, an external HDD, cloud storage, tape. Physical diversity defeats systemic failure.
  • 1 offsite copy: A backup in your house is not a backup if your house floods. The third copy must be geographically separate — a safe-deposit box, a friend’s home, encrypted cloud storage.

This standard exists because it’s been stress-tested by people who can’t afford to lose data. The US National Archives uses it. Financial institutions use it. Journalists working under surveillance use it. The logic is the same whether you’re protecting state records or your family photos.

Why encryption matters: zero-trust storage

Here’s the reframe that makes the offsite copy easy. Once a backup is encrypted so only you can decrypt it, the storage location stops mattering. The provider could be data incidented, the drive stolen, the offsite location compromised — and the incidenter sees only mathematical noise.

Tools like Restic and Borg encrypt locally, before data leaves your device, using AES-256. Only your passphrase decrypts it. The backup target — whether Backblaze B2, AWS, or your home NAS — never touches readable data. That’s what makes it safe to put a copy of your private keys or tax returns on someone else’s server: they’re holding a locked box and you kept the only key.

Restic vs Borg: which backup tool should you use?

Both follow the same principles — client-side encryption, deduplication, versioning — and differ mainly in setup.

| Feature | Restic | Borg | | Setup complexity | Simple; single binary | Moderate; requires Python | | Deduplication | Content-defined chunking | Content-defined chunking | | Cloud-ready | Native S3, B2 support | Via SFTP or local mount | | Performance | Fast; good for frequent backups | Faster compression; best for large repos | | Learning curve | Gentle | Steeper |

For most people: Restic. It’s easier to set up, runs on Windows, Mac, and Linux, and talks to cloud storage natively. For servers and power users: Borg — more aggressive compression and better for massive repositories, at the cost of more configuration.

How content-defined chunking saves you money and space

Deduplication is why a 1TB backup doesn’t eat 1TB of storage every single day. Your tool breaks data into variable-size chunks (typically 512KB to 2MB) and hashes each one. If a chunk already exists — in another file, or in yesterday’s backup — it’s stored once. Only new or changed chunks get sent.

The real-world impact is dramatic. A 1TB initial backup might add only 5–20GB per day in changes afterward. Over a month, deduplication saves 70–95% of what a naive copy-everything backup would cost. You back up daily, but you pay for it like you back up once.

Building your 3-2-1 stack: step by step

Step 1: Choose your hardware
Local backup: A 2TB rugged external SSD or HDD (LaCie, WD, Seagate). Store it in a fireproof safe or a separate room from your primary device.
Offsite backup: Encrypted cloud storage (Backblaze B2, AWS S3, Wasabi) or a physical drive you keep at a friend’s house or in a safe-deposit box.
Working copy: Your laptop, desktop, or phone — wherever your active files live.

Step 2: Initialize your repository
Using Restic, create a long random passphrase and store it in your password manager — never in the backup itself. Then run `restic init –repo /path/to/backup`. This creates the encrypted vault; only your passphrase opens it.

Step 3: Automate it
Schedule a nightly job — a cron job on Linux/Mac or Task Scheduler on Windows — running `restic backup /path/to/data –repo /path/to/backup`. Run it around 03:00 when the device is plugged in and your connection is stable. Automatic means you can’t forget.

Step 4: Verify weekly integrity
Once a week, run `restic check –repo /path/to/backup`. This verifies every chunk’s hash, so you catch corruption before it spreads.

Step 5: Test recovery every 90 days
This is the step everyone skips and the one that actually matters. Restore the whole backup into a temporary folder or VM with `restic restore latest –repo /path/to/backup –target /tmp/test`, then confirm the files open, databases work, and keys are readable. A backup you’ve never restored is theater; a backup you’ve restored is insurance.

Plausible deniability and ransomware defense

Two advanced layers worth knowing about:

Hidden volumes. If you face confiscation or coercion, VeraCrypt lets you embed a hidden inner volume inside an outer decoy volume. Under duress you reveal the outer password — the incidenter gets harmless decoy files, not your real backup. This is extreme-case security for journalists and dissidents, not everyday use.

Immutable backups. Ransomware that hits your main device will try to encrypt or delete your backups too. WORM (Write Once Read Many) permissions stop it — historical snapshots can’t be overwritten, only added to. Set backup directories to append-only, keep versioned snapshots from different dates, and air-gap the offsite copy except during scheduled syncs. If ransomware strikes, you restore from a snapshot that predates the incident.

Frequently asked questions

How long does a full restore take?
For a 1TB backup on a modern external drive or broadband connection, expect 1–4 hours; cloud restores run slower at 5–12 hours. This is exactly why you test recovery every 90 days — so you know your real timeframe and don’t discover it during an emergency.

What if I forget my backup passphrase?
You lose everything. There’s no recovery, no backdoor, no support team that can let you back in. Write it down physically or store it in your password manager and treat it as your most valuable secret. Because if your password manager is compromised, so is your backup — which is why the next answer matters.

Should my backup passphrase match my password-manager passphrase?
No. Use a separate, equally strong passphrase. If someone cracks your password manager, they shouldn’t automatically get your backups too. Keep the two independent.

Is encrypted cloud storage actually safe?
Yes — encrypted cloud backup is safer than physical-only backup. You gain geographic redundancy across the provider’s data centers, and your data is unreadable to them. The trade-off is dependence on their uptime, which is why you pair cloud backup with a local copy for full resilience.

How often should I back up?
Daily is the modern default. Hourly for critical systems; weekly if your data rarely changes. The real question is how much new work you can afford to lose. If a day’s loss is catastrophic, back up every few hours; if a week is acceptable, weekly is fine. Set the schedule around your tolerance, not a rule.

Backups are the quiet foundation that makes every other security practice meaningful. A hardened device, a private network, and strong encryption all mean nothing the day a drive clicks and dies with no recovery. So don’t end on a resolution you’ll forget — end on an action. Download Restic tonight, initialize a repository with a strong passphrase, and run your first backup before you sleep. Then, in 90 days, restore it and watch your files come back whole. That’s the moment you stop hoping and start knowing — the moment you become the person whose data simply doesn’t disappear.

For the offsite copy, pCloud’s client-side encrypted storage (files are encrypted on your device before upload) is one of the few consumer cloud services where even the provider cannot read your data. See it →

Affiliate link — if you buy through it we may earn a commission at no extra cost to you. We only recommend tools we’ve independently vetted.

Ranveersingh Ramnauth · Founder & Editor, The Unhacked

Ranveersingh Ramnauth is the founder and editor of The Unhacked, an independent publication on digital sovereignty — privacy, self-custody, health, and money. The Unhacked publishes disclosure-first, independently-tested guidance and never lets a commercial link change a verdict. More about our methodology →

Found this valuable?
📡

Join the Inner Circle

Weekly dispatches. No algorithms. No surveillance. Just sovereign intelligence.

No spam. No algorithms. Unsubscribe any time.

Score your sovereigntyfree · 2-min · private