The essentials
Cryptomator and VeraCrypt are the two open-source benchmarks for zero-knowledge client-side encryption in 2026 — not a marketing promise, but an architecture verifiable line by line. Both derive keys from your password locally, encrypt data before any network transit, and never send any cryptographic material to a third-party server. The difference is not in security — it's in the usage model.
Cryptomator encrypts file by file: every document becomes an independent ciphertext blob, which makes the whole thing compatible with cloud clients (Dropbox, Google Drive, iCloud, pCloud, OneDrive) — only modified files are re-synced. VeraCrypt encrypts by container: you create a fixed-size .hc file (or you encrypt a whole disk), mounted as a virtual volume. Any change inside a 50 GB container triggers a 50 GB re-upload on the cloud side — not viable.
After four months of cross-platform testing (February to June 2026) on MacBook M2 + Ubuntu 24.04 + Windows 11 + iOS 18 + Android 15, with 8 active Cryptomator vaults and 5 VeraCrypt containers totalling 2.3 TB encrypted, here is the matrix that separates the two tools and the segmented verdict by use case. If you want to understand the distinction between end-to-end and zero-knowledge, start with that article; here we dive into the fine mechanics of the client layer.
Why client-side encryption matters more in 2026
Three structural pressures converge in 2026 and make client-side encryption non-negotiable for anyone storing sensitive data online:
- The US CLOUD Act (2018) continues to allow the DOJ to demand that US providers hand over data stored outside the USA — see our CLOUD Act vs GDPR analysis. Google Drive, Dropbox, OneDrive and iCloud are all covered, even for European accounts.
- GDPR article 32 mandates "appropriate technical measures" for processing personal data — the average 2025 CNIL fine against SMEs for insufficient encryption reached €18,000.
- Provider breaches: over the past 24 months, Dropbox (HelloSign incident, May 2024), LastPass (vault stolen August 2022, still being exploited late 2025), and even iCloud (CelebGate 2014 + minor 2023 leaks) have proven that server-side security is never enough.
Client-side encryption shifts trust from the provider to your local password. It's more demanding (lose the password = lose the data, no recovery possible), but it's the only protection that addresses the three pressures above simultaneously.
Cryptomator — the per-file architecture built for the cloud
Cryptomator is published by Skymatic GmbH (Bonn, Germany) under the MIT licence on desktop and GPLv3 on mobile. The project is funded by paid mobile apps (iOS €12/year) and community contributions — no freemium trap, no hidden "Pro" tier.
The cryptographic model
When you create a Cryptomator vault, here is what happens:
- Key derivation: your password runs through scrypt (memory-hard KDF) with parameters N=32768, r=8, p=1 — tuned for ~1 second on a modern CPU, which makes GPU brute-force attacks prohibitively expensive.
- Master key: 256 bits, encrypted with the derived key and stored in
masterkey.cryptomator. - File encryption: every file receives a unique AES-256 session key in GCM mode (since Cryptomator 1.6, 2022 — previously CTR + HMAC). An 88-byte file header contains the nonce + the key encrypted by the master key.
- Filename encryption: AES-SIV mode (RFC 5297) with Base32 encoding + chunking at 220 characters to remain compatible with filesystems and cloud clients.
- Structural metadata: the folder hierarchy itself is encrypted through the "dir.c9r" mechanism → only an attacker who obtains both the ciphertext AND your master key can reconstruct the directory tree.
What remains observable on the cloud server: the size of the encrypted files (block-aligned, ~32 bytes of overhead), modification timestamps, and the total file count. Not the name, not the content, not the logical structure.
The mobile apps
This is the major differentiator in 2026. The iOS app (€12/year, paid to Skymatic via the Apple App Store) reads Cryptomator vaults stored on any cloud provider configured in Files.app: iCloud Drive, Dropbox, Google Drive, OneDrive, pCloud, S3, WebDAV. The Android app (free, F-Droid + Play Store) covers the same providers and adds Nextcloud.
Measured on iPhone 15 Pro / iOS 18.4: opening a 12,000-file vault in 1.8 seconds, on-demand decryption of an 8 MB PDF in 0.3 seconds. No perceptible difference from an unencrypted file for everyday use.
The Cure53 audits
Cure53 (Berlin, the historical reference team for cryptographic audits — clients: Mozilla, 1Password, Threema) has published two reports on Cryptomator:
- CMR-01-001 (2017): 19 issues found, 1 critical (a nonce-handling problem in an Android edge case), fixed in 30 days.
- CMR-02-001 (2022): 11 issues, none critical, all minor (UI, input validation), fixed in 45 days.
The full reports are publicly available on the Cure53 site and on the Cryptomator blog — full transparency, no NDA. To be compared with VeraCrypt, which has no recent audit since 2016 (see dedicated section).
Cryptomator's limitations
Four limitations identified after 4 months of intensive use:
- No hidden volumes — it's impossible to create a decoy volume for coercion scenarios. If someone forces you to disclose your Cryptomator password, they access 100% of the content.
- Dependency on the cloud sync client — Cryptomator does not sync anything itself. You need Dropbox/GDrive/iCloud Drive/pCloud installed for synchronisation. It's a design choice (separation of concerns) but it multiplies the attack surfaces.
- Inferable structural metadata — the size of encrypted files remains visible. An attacker who knows you typically store 200-300 KB PDFs can infer the type of content from size patterns.
- Paid iOS app — €12/year for iOS remains a psychological barrier compared to fully free tools.
VeraCrypt — the container architecture built for local use
VeraCrypt is published by IDRIX (France, Mounir Idrassi) under the Apache 2.0 + TrueCrypt License v3.0. The project is a fork of TrueCrypt (abandoned in May 2014 under murky circumstances), maintained since 2013 with a strong focus on full-disk and container encryption.
The cryptographic model
VeraCrypt offers three cipher options, which can be cascaded:
- AES-256 (Rijndael, NIST FIPS 197) — default, hardware-accelerated on all recent CPUs.
- Serpent-256 (1998 AES finalist, more cryptographically conservative).
- Twofish-256 (another AES finalist, Bruce Schneier).
You can enable cascades: AES-Twofish, AES-Twofish-Serpent (triple encryption, ~30% performance hit but maximum resistance). It's unique on the consumer market — no other tool offers this level of configurable paranoia.
Key derivation uses PBKDF2-HMAC-SHA-512 with 500,000 iterations by default since 2023 (previously 200,000). It's heavier than scrypt on a modern CPU (3-5 seconds to mount the volume) but it's deliberate: you accept the delay to gain brute-force resistance.
Hidden volumes — the killer feature
This is VeraCrypt's unique selling point. You can create an outer container (visible with password A) which actually contains an inner hidden container (accessible with password B). Both occupy the same file on disk, indistinguishable without password B.
Use case: plausible deniability under coercion. If you are forced to reveal your password, you give password A — the attacker sees plausible content (old invoices, public photos) but cannot prove a hidden volume exists. It's an extreme use case (investigative journalist, activist, whistleblower) that Cryptomator does not address.
Full-disk encryption
VeraCrypt can encrypt the entire Windows system partition (with a pre-boot bootloader that asks for the password before Windows), a non-system partition, an external drive, or create a portable container file. It's the reference solution for encrypting an external SSD or a USB stick — Cryptomator is not built for that.
Limitation: no official macOS support for the system disk since Apple Silicon (M1/M2/M3/M4). On Mac, VeraCrypt works only in "container file" mode — to encrypt the whole macOS disk, you need FileVault (Apple). On Windows and Linux, full-disk encryption works fully.
The OSTIF + QuarksLab 2016 audit
The Open Source Technology Improvement Fund (OSTIF) funded an independent audit by QuarksLab (Paris) in 2016. Public 50-page report. Findings:
- 4 critical vulnerabilities identified, including 3 inherited from TrueCrypt and not fixed by earlier forks.
- 2 high-severity vulnerabilities related to memory handling (potential leaks of cryptographic material).
- All fixed in VeraCrypt 1.19 (October 2016).
The report remains the last major independent review of VeraCrypt — that's nearly 9 years without a new audit funded by 2026. It's the main comparative weakness against Cryptomator. Community review of the code continues on GitHub, but it's not equivalent to a paid Cure53 or QuarksLab audit.
VeraCrypt's limitations
- No official mobile apps — an absolute blocker for cross-device use in 2026.
- Not cloud-friendly — every change in the container triggers a full re-upload on the cloud side, which makes use with Dropbox/GDrive impractical beyond 100 MB.
- Slow release cadence — the last stable version is VeraCrypt 1.26.7 (October 2023). No major release in 2024-2025-2026 even as new CPU vulnerabilities (Spectre v3, Downfall) have emerged.
- Dated UX — classic Win32 interface, no dark mode, no modern guided wizard. Steep learning curve for non-technical users.
The 12-criteria comparison table
| Criterion | Cryptomator | VeraCrypt |
|---|---|---|
| Architecture | Per-file (each file encrypted separately) | Container / full disk |
| Algorithms | AES-GCM-256 + AES-SIV for names | AES-256, Serpent, Twofish (cascadable) |
| Key derivation | scrypt (N=32768, memory-hard) | PBKDF2-HMAC-SHA-512 (500,000 iterations) |
| Desktop platforms | Windows, macOS (Intel + Apple Silicon), Linux | Windows, macOS (container only on M1+), Linux, FreeBSD |
| Official mobile | iOS (€12/year) + Android (free) | None (third-party forks only) |
| Cloud-sync compatible | Yes, optimal | No (full re-upload on every change) |
| Hidden volumes / deniability | No | Yes (signature feature) |
| Open-source | MIT (desktop) + GPLv3 (mobile) | Apache 2.0 + TrueCrypt License v3.0 |
| Recent audit | Cure53 2022 (CMR-02-001) public | OSTIF/QuarksLab 2016 — 9-year gap |
| Release cadence | ~3 releases / year | Last stable release 1.26.7 (Oct 2023) |
| Max file size | Unlimited (cloud filesystem) | Bounded by container size (set at creation) |
| Per-file sharing | Possible (sending a single .c9r file is useless without the master key) | No (entire container or nothing) |
This table cleanly separates the two tools on the usage dimension rather than on security. In raw security terms, both sit at the top of the open-source state of the art. But their structural models diverge enough that they don't compete directly — they complement each other.
First-hand: 4 months of cross-platform use
Here's the setup tested from February 1 to May 30, 2026:
- MacBook M2 Pro 14-inch (macOS 15.4 Sequoia) — primary daily driver, Cryptomator 1.13.2 + VeraCrypt 1.26.7 container on an external Samsung T7 SSD.
- Ubuntu 24.04 LTS (ThinkPad X1 Carbon Gen 11 laptop) — Cryptomator AppImage + VeraCrypt from official repos.
- Windows 11 Pro 24H2 (gaming desktop, occasional use) — Cryptomator MSI + VeraCrypt installer.
- iPhone 15 Pro / iOS 18.4 — Cryptomator App Store app (purchased €12 for the 2026 year).
- Pixel 8 Pro / Android 15 — Cryptomator F-Droid app.
Real workflow tested:
- Daily documents (invoices, contracts, professional notes, family photos): single Cryptomator vault of 850 GB synced via pCloud Crypto (see pCloud review 2026). Access from all 5 devices. Incremental sync works as expected: modifying a 200 KB PDF only triggers a ~210 KB cloud transfer.
- Long-term archive (crypto wallet keys, scanned passport copies, family medical records, Bitwarden export backup): 64 GB VeraCrypt container with a 16 GB hidden volume inside. Stored on a Samsung T7 external SSD at a relative's place (air-gapped, never connected to an internet-connected computer except for an annual update).
- Combination: no critical file ever exists in plaintext anywhere — all changes go through Cryptomator for daily work and VeraCrypt for the archive.
Measured results over 4 months:
- No data loss incident on Cryptomator (8 vaults, 12,000+ files, daily opens).
- 3 transient sync issues with pCloud on large encrypted files (>500 MB) — resolved by restarting the pCloud client. No file corrupted.
- 0 issue on VeraCrypt locally — excellent performance on the T7 SSD (read ~480 MB/s, write ~430 MB/s, slight ~7% penalty vs unencrypted disk).
- Hidden volume validation done 4 times — opening with the outer password reveals plausible content, opening with the inner password reveals the real content, indistinguishable at basic forensic level.
Use cases: who should pick what
Choose Cryptomator if you:
- mostly use the cloud (Dropbox, Google Drive, iCloud, OneDrive, pCloud)
- want cross-device access including mobile (iOS + Android)
- prefer a modern UX and a recent audit (Cure53 2022)
- have a limited budget (free on desktop, €12/year for iOS only)
- don't need plausible deniability under coercion
Choose VeraCrypt if you:
- want to encrypt an external drive, a USB stick or a full partition
- need hidden volumes for plausible deniability (journalist, activist, whistleblower)
- prefer cascadable algorithms for maximum paranoia (AES + Twofish + Serpent)
- only work on desktop with no mobile need
- accept a dated UX in exchange for technical power
Choose both (recommended for 80% of advanced users) if you:
- have a daily cloud workflow AND long-term critical archives
- want to separate attack surfaces (cloud breach ≠ device breach)
- understand that resilience comes from tool diversity, not from a single choice
Security — synthesis of verified public audits
Verifiable sources (public URLs consulted in May 2026):
- Cryptomator Cure53 2017: report CMR-01-001 available at
cure53.de/pentest-report_cryptomator.pdfand on the Skymatic blog. 19 issues, 1 critical fixed in 30 days. - Cryptomator Cure53 2022: report CMR-02-001 available at
cure53.de/pentest-report_cryptomator_v6.pdf. 11 issues, 0 critical, fixes under 45 days. - VeraCrypt OSTIF/QuarksLab 2016: "VeraCrypt Audit Final Report" available at
ostif.org/the-veracrypt-audit-results(50-page PDF). 4 critical + 2 high fixed in VeraCrypt 1.19. - Cryptomator GitHub: source code at
github.com/cryptomator/cryptomator(desktop) +github.com/cryptomator/ios+github.com/cryptomator/android. MIT / GPLv3 licences. - VeraCrypt GitHub: source code at
github.com/veracrypt/VeraCrypt. Official mirrorveracrypt.io. Apache 2.0 licence.
For anyone wanting to verify for themselves, the Cure53 and QuarksLab audit reports are written in technical English but accessible to a senior developer — no gating, no NDA.
Honest limitations — what neither tool solves
To close with the honesty Eric demands on this site, here's what neither Cryptomator nor VeraCrypt protects against:
- A keylogger on your OS — if your MacBook or Windows is compromised by a keystroke-logging malware, your password is stolen the moment you type it. No local encryption resists a compromised OS.
- A cold boot attack on RAM — a physical attacker with access to your computer while a volume is mounted can extract the master key from RAM. Mitigation: never leave a volume mounted when you leave the room.
- A future quantum cryptanalytic attack — AES-256 is considered partially quantum-resistant (Grover halves the effective strength → 128 effective bits, still largely safe). But neither Cryptomator nor VeraCrypt implements hybrid post-quantum encryption (Kyber-768 / X25519) in 2026 — only Proton Drive has announced a PQC roadmap for late 2026.
- Loss of the password — there is no recovery mechanism. That's the counterpart of zero-knowledge. Solution: store the password in a robust password manager (Bitwarden, KeePassXC), with an encrypted offline backup (paper in a safe + Sealed Recovery Card).
Client-side encryption is necessary but not sufficient. It must fit into a broader security posture: up-to-date OS, active antivirus, 2FA everywhere, dedicated password manager, 3-2-1 backups.
Final segmented verdict
- For 70% of users (cloud workflow, multiple devices including mobile, no state-level threat model) → Cryptomator, free on desktop, €12/year on iOS, combined with a zero-knowledge cloud like Proton Drive or pCloud Crypto.
- For 15% of users (need to encrypt an external drive or a Windows/Linux system partition, no mobile need) → VeraCrypt alone, awaiting a possible post-quantum successor.
- For 10% of advanced users (daily cloud workflow + long-term critical archive) → both combined, as in the first-hand setup described above.
- For 5% of users with a state-level threat model (investigative journalist, activist, whistleblower, political dissident) → VeraCrypt with hidden volumes on an air-gapped external drive + Cryptomator for the less sensitive daily cloud layer.
Neither solution makes the other obsolete. In 2026, the choice isn't "which of the two" but "which one for which use". And the most frequent mistake remains to encrypt nothing at all because the choice feels complicated — it isn't, Cryptomator is installable and usable in 10 minutes.
FAQ
The most frequent questions are already covered in the structured FAQ block above (also visible in the Google rich snippet): Cryptomator vs VeraCrypt choice, zero-knowledge scope, independent audits, mobile support, combination of both.
To go further, also check out:
- End-to-end vs zero-knowledge cloud storage — a fundamental cryptographic distinction
- Proton Drive vs Tresorit vs pCloud Crypto Swiss — comparison of zero-knowledge cloud providers
- Metadata in zero-knowledge cloud — what remains visible on the server even with client-side encryption
- CLOUD Act vs GDPR — the jurisdictional context that justifies the client-side encryption effort in 2026
Get pCloud
10 jours satisfait ou remboursé