Priviy
chiffrement-cloudCOMP

Cryptomator vs VeraCrypt 2026: zero-knowledge client-side encryption comparison

Cryptomator and VeraCrypt are the two open-source benchmarks for client-side encryption in 2026, but they solve different problems. 2026 comparison - architecture, audits (Cure53, OSTIF/QuarksLab), performance, mobile, hidden volumes, cloud sync and a segmented verdict based on documented capabilities and how each tool is built.

By Eric Gerard · Editor · Priviy14 min read

The essentials

Cryptomator and VeraCrypt are the two open-source benchmarks for zero-knowledge client-side encryption in 2026. It's not a marketing promise, but a design you can check line by line. Both build keys from your password on your device. Both encrypt data before any network transit. And neither ever sends any key material to a third-party server. The gap is not in safety. It's in the usage model.

Cryptomator encrypts file by file: every document becomes its own ciphertext blob. That makes the whole thing work with cloud clients (Dropbox, Google Drive, iCloud, pCloud, OneDrive), since only the files you change 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 forces a 50 GB re-upload on the cloud side. That's not viable.

This guide is based on each tool's documented features and design across desktop (macOS, Linux, Windows) and mobile (iOS, Android). Here is the matrix that splits the two tools, plus a segmented verdict by use case. If you want to grasp the gap between end-to-end and zero-knowledge, start with that article. Here we dig into the fine workings of the client layer.

Why client-side encryption matters more in 2026

Three deep pressures meet in 2026. Together they make client-side encryption a must for anyone storing sensitive data online:

  1. The US CLOUD Act (2018) still lets the DOJ 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.
  2. GDPR article 32 calls for "appropriate technical measures" when handling personal data. The average 2025 CNIL fine against SMEs for weak encryption reached €18,000.
  3. 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 shown that server-side security is never enough.

Client-side encryption moves trust from the provider to your local password. It asks more of you (lose the password and you lose the data, with no way back). But it's the only guard that meets all three pressures above at once.

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. Paid mobile apps (iOS €12/year) and community gifts fund the project. There is no freemium trap and no hidden "Pro" tier.

The cryptographic model

When you create a Cryptomator vault, here is what happens:

  1. Key derivation: your password runs through scrypt (memory-hard KDF) with parameters N=32768, r=8, p=1. It's tuned for ~1 second on a modern CPU, which makes GPU brute-force attacks far too costly.
  2. Master key: 256 bits, encrypted with the derived key and stored in masterkey.cryptomator.
  3. File encryption: every file gets a unique AES-256 session key in GCM mode (since Cryptomator 1.6, 2022 - previously CTR + HMAC). An 88-byte file header holds the nonce plus the key encrypted by the master key.
  4. Filename encryption: AES-SIV mode (RFC 5297) with Base32 encoding, plus chunking at 220 characters so it stays compatible with filesystems and cloud clients.
  5. Structural metadata: the folder tree itself is encrypted through the "dir.c9r" mechanism. So only an attacker who holds both the ciphertext AND your master key can rebuild the directory tree.

What stays visible on the cloud server: the size of the encrypted files (block-aligned, ~32 bytes of overhead), change timestamps, and the total file count. Not the name, not the content, not the logical layout.

The mobile apps

This is the big difference-maker in 2026. The iOS app (€12/year, paid to Skymatic via the Apple App Store) reads Cryptomator vaults stored on any cloud provider set up 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.

Cryptomator decrypts files on demand rather than mounting a whole volume. So opening a large vault and decrypting a single file are built to feel near-instant in daily use. When you open a document, there is no real difference from an unencrypted file, since only the file you touch is decrypted.

The Cure53 audits

Cure53 (Berlin) is the long-time go-to team for cryptographic audits. Its clients include Mozilla, 1Password and Threema. It has published two reports on Cryptomator:

  • CMR-01-001 (2017): the first public audit of the Cryptomator codebase.
  • CMR-02-001 (2022): a follow-up audit after several years of development.

The full reports are public on the Cure53 site and on the Cryptomator blog. There is full openness and no NDA. See the published reports for the exact findings and their fixes. Compare this with VeraCrypt, which has had no recent audit since 2016 (see the dedicated section).

Cryptomator's limitations

Cryptomator's design has four built-in limits:

  1. No hidden volumes - you can't make a decoy volume for coercion cases. If someone forces you to give up your Cryptomator password, they reach 100% of the content.
  2. It leans on the cloud sync client - Cryptomator does not sync anything itself. You need Dropbox/GDrive/iCloud Drive/pCloud installed to sync. It's a design choice (clean separation of roles), but it widens the attack surface.
  3. Structural metadata can be guessed - the size of encrypted files stays visible. An attacker who knows you usually store 200-300 KB PDFs can guess the type of content from size patterns.
  4. Paid iOS app - €12/year for iOS is still a mental barrier next 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, which was dropped in May 2014 in murky circumstances. It has been kept up 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 turn on cascades: AES-Twofish, AES-Twofish-Serpent (triple encryption, ~30% speed hit but top resistance). It's one of a kind on the consumer market. No other tool offers this much tunable paranoia.

Key derivation uses PBKDF2-HMAC-SHA-512 with 500,000 rounds 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 on purpose: you take the delay to gain brute-force resistance.

Hidden volumes - the killer feature

This is VeraCrypt's standout selling point. You can make an outer container (shown with password A) that in fact holds an inner hidden container (reached with password B). Both sit in the same file on disk, and you can't tell them apart without password B.

Use case: plausible deniability under coercion. If you are forced to reveal your password, you give password A. The attacker then sees plausible content (old invoices, public photos) but can't prove a hidden volume exists. It's an extreme use case (investigative journalist, activist, whistleblower) that Cryptomator does not cover.

Full-disk encryption

VeraCrypt can encrypt the whole Windows system partition (with a pre-boot bootloader that asks for the password before Windows). It can also do a non-system partition, an external drive, or a portable container file. It's the go-to tool for encrypting an external SSD or a USB stick. Cryptomator is not built for that.

Limit: there is 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 in full.

The OSTIF + QuarksLab 2016 audit

The Open Source Technology Improvement Fund (OSTIF) funded an outside audit by QuarksLab (Paris) in 2016. The public report runs 50 pages. Findings:

  • 4 critical flaws found, including 3 inherited from TrueCrypt and left unfixed by earlier forks.
  • 2 high-severity flaws tied to memory handling (possible leaks of key material).
  • All fixed in VeraCrypt 1.19 (October 2016).

The report is still the last major outside review of VeraCrypt. That means nearly 9 years with no new audit funded by 2026. It's the main weak point next to Cryptomator. Community review of the code goes on at GitHub, but it's not the same as a paid Cure53 or QuarksLab audit.

VeraCrypt's limitations

  1. No official mobile apps - a hard blocker for cross-device use in 2026.
  2. Not cloud-friendly - every change in the container forces a full re-upload on the cloud side. That makes use with Dropbox/GDrive impractical beyond 100 MB.
  3. Slow release pace - the last stable version is VeraCrypt 1.26.7 (October 2023). There has been no major release in 2024-2025-2026, even as new CPU flaws (Spectre v3, Downfall) have come up.
  4. Dated UX - a classic Win32 interface, no dark mode, no modern guided wizard. The learning curve is steep for non-technical users.

The 12-criteria comparison table

CriterionCryptomatorVeraCrypt
ArchitecturePer-file (each file encrypted separately)Container / full disk
AlgorithmsAES-GCM-256 + AES-SIV for namesAES-256, Serpent, Twofish (cascadable)
Key derivationscrypt (N=32768, memory-hard)PBKDF2-HMAC-SHA-512 (500,000 iterations)
Desktop platformsWindows, macOS (Intel + Apple Silicon), LinuxWindows, macOS (container only on M1+), Linux, FreeBSD
Official mobileiOS (€12/year) + Android (free)None (third-party forks only)
Cloud-sync compatibleYes, optimalNo (full re-upload on every change)
Hidden volumes / deniabilityNoYes (signature feature)
Open-sourceMIT (desktop) + GPLv3 (mobile)Apache 2.0 + TrueCrypt License v3.0
Recent auditCure53 2022 (CMR-02-001) publicOSTIF/QuarksLab 2016 - 9-year gap
Release cadence~3 releases / yearLast stable release 1.26.7 (Oct 2023)
Max file sizeUnlimited (cloud filesystem)Bounded by container size (set at creation)
Per-file sharingPossible (sending a single .c9r file is useless without the master key)No (entire container or nothing)

This table splits the two tools on the usage side rather than on security. In raw security terms, both sit at the top of the open-source state of the art. But their core models differ enough that they don't compete head-on. They round each other out.

A practical cross-platform workflow

A laptop open on a desk
A laptop open on a desk

For most people the two tools round each other out rather than compete. A solid setup that works across macOS, Linux, Windows, iOS and Android looks like this:

  • Daily documents (invoices, contracts, work notes, photos): a single Cryptomator vault synced via a cloud you already use - for example pCloud Crypto (see pCloud review 2026). Cryptomator's per-file design means partial sync works as planned: editing a 200 KB PDF only sends roughly that file's size, not the whole vault. The same vault is reachable from every device, including mobile.
  • Long-term archive (crypto wallet keys, scanned ID copies, medical records, password-manager export backups): a VeraCrypt container - with a hidden volume if you want plausible deniability - stored on an external encrypted SSD kept air-gapped, plugged in only for periodic updates.
  • Combination: with this split, no critical file needs to sit in plaintext on a synced device. Daily work goes through Cryptomator, and the cold archive through VeraCrypt.

What to keep in mind:

  • Cryptomator's partial, per-file sync is why it pairs well with any cloud client. A VeraCrypt container, in contrast, re-uploads in full on any change, so keep containers off cloud sync.
  • On a fast external SSD, VeraCrypt's full-disk encryption adds only a small overhead versus an unencrypted disk, since AES-NI hardware acceleration does most of the work.
  • A hidden volume is only as good as your discipline. Opening with the outer password shows decoy content. Opening with the inner password shows the real content. But you must never write to the outer volume in a way that overwrites the hidden one.

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 top paranoia (AES + Twofish + Serpent)
  • only work on desktop with no mobile need
  • accept a dated UX in trade 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)
  • see that resilience comes from a mix of tools, 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.pdf and on the Skymatic blog. See the report for the detailed findings.
  • Cryptomator Cure53 2022: report CMR-02-001 available at cure53.de/pentest-report_cryptomator_v6.pdf. See the report for the detailed findings.
  • VeraCrypt OSTIF/QuarksLab 2016: "VeraCrypt Audit Final Report" available at ostif.org/the-veracrypt-audit-results. Audit conducted after the TrueCrypt fork; see the report for the vulnerabilities identified and fixed.
  • 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 mirror veracrypt.io. Apache 2.0 licence.

If you want to verify for yourself, the Cure53 and QuarksLab audit reports are written in technical English but open to a senior developer. There is no gating and 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:

  1. A keylogger on your OS - if a keystroke-logging malware takes over your MacBook or Windows, your password is stolen the moment you type it. No local encryption holds up against a hacked OS.
  2. A cold boot attack on RAM - a physical attacker who reaches your computer while a volume is mounted can pull the master key from RAM. Fix: never leave a volume mounted when you leave the room.
  3. A future quantum attack - AES-256 is held to be partly quantum-safe (Grover halves the effective strength → 128 effective bits, still largely safe). But neither Cryptomator nor VeraCrypt ships hybrid post-quantum encryption (Kyber-768 / X25519) in 2026. Only Proton Drive has announced a PQC roadmap for late 2026.
  4. Loss of the password - there is no recovery mechanism. That's the flip side of zero-knowledge. Fix: keep the password in a strong password manager (Bitwarden, KeePassXC), with an encrypted offline backup (paper in a safe + Sealed Recovery Card).

Client-side encryption is needed but not enough. It must fit into a wider security stance: an up-to-date OS, an active antivirus, 2FA everywhere, a dedicated password manager, and 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 practical workflow 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 tool makes the other pointless. In 2026, the choice isn't "which of the two" but "which one for which use". And the most common mistake is still to encrypt nothing at all because the choice feels hard. It isn't: you can install and use Cryptomator in 10 minutes.

To dig deeper, see how to encrypt a file.

FAQ

The most common questions are already covered in the structured FAQ block above (also shown in the Google rich snippet): the Cryptomator vs VeraCrypt choice, zero-knowledge scope, outside audits, mobile support, and using both together.

To go further, also check out:

Frequently asked questions

Cryptomator or VeraCrypt in 2026 - which one should you choose?
It depends on your use case. Cryptomator is built to encrypt single files synced through the cloud (Dropbox, Google Drive, iCloud, pCloud, OneDrive). Each file is encrypted on its own with AES-GCM-256. So cloud sync only sends back the files you changed. VeraCrypt works with containers or full disks. You make an encrypted volume that mounts as a virtual drive. It fits an external drive, a USB stick or a system partition. But it suits the cloud far less well: any change inside a 50 GB container forces a 50 GB re-upload. If your workflow is cloud-first, pick Cryptomator. If you want to encrypt a full disk or a local volume, pick VeraCrypt. Many advanced users use both.
Are Cryptomator and VeraCrypt really zero-knowledge?
Yes for both, but the meaning differs. Cryptomator builds your master key from a password using scrypt (memory-hard). It encrypts every file with AES-GCM-256 and a unique session key. It stores only the ciphertext on the cloud. So the cloud provider sees neither the filename (encrypted via SIV), the content, nor the folder layout. VeraCrypt encrypts the whole volume with a master key built from your password (PBKDF2-HMAC-SHA-512, 500,000 rounds by default since 2023). Neither tool sends a key to a server. They are the two most checkable open-source tools on the client-side market.
What independent audits exist for Cryptomator and VeraCrypt?
Cure53 (Berlin) audited Cryptomator in 2017 (report CMR-01-001) and 2022 (report CMR-02-001). The results are public, and minor flaws were fixed within 60 days. OSTIF and QuarksLab audited VeraCrypt in 2016 (public 50-page report) after the TrueCrypt fork. They found and fixed four critical flaws inherited from TrueCrypt. Since 2016, no major new outside audit has covered VeraCrypt, even though nine years have passed. That's a relative weak point next to Cryptomator, which has been audited twice in five years.
Does Cryptomator work on mobile while VeraCrypt does not?
Correct. Cryptomator has iOS apps (€12/year, App Store) and Android (free, F-Droid + Play Store). The Skymatic GmbH team keeps both up to date. Those apps read Cryptomator vaults hosted on your cloud and give full read/write mobile access. VeraCrypt offers no official mobile app. Third-party forks exist (EDS Lite on Android for example), but without the upkeep or audit of the official team. For a cross-device use case that includes mobile, Cryptomator is the only serious open-source option in 2026.
Can you combine Cryptomator and VeraCrypt?
Yes. It's even the advised setup for a wide threat model. Typical case: you keep your everyday documents in a Cryptomator vault synced via Proton Drive or pCloud Crypto (multi-device access, partial sync). And you store your long-term secrets (crypto keys, passport copies, family medical records, Bitwarden export backups) in a VeraCrypt container with a hidden volume. That drive is encrypted, external, and kept with a relative you trust. You get the gains of both: cloud sync for the daily routine, and an air-gapped hidden volume for the critical material.
Choix éditorial
4.5 / 5

Add zero-knowledge encryption → pCloud Crypto

Client-side encryption · only you hold the key · Swiss jurisdiction

Société suisse depuis 2013Satisfait ou remboursé 10jFree 10 GB
Voir l'offre