What is Proton Drive as a cloud storage solution?
Proton Drive is the encrypted cloud storage product from Proton AG, the Swiss company behind Proton Mail and Proton VPN. Unlike conventional cloud storage services, it is built around a single architectural principle: zero-knowledge encryption by default on 100% of your account, with no optional toggle or paid add-on required.
The practical implication is stark. When you upload a file to Google Drive, Dropbox or iCloud, those companies encrypt your data — but they manage the keys. They can read your files. A subpoena, an internal breach, a rogue employee or a court order in a jurisdiction with broad government access laws can expose your content. When you upload a file to Proton Drive, the encryption key never leaves your device. The Proton server receives a ciphertext blob it cannot decrypt, even under legal pressure.
This guide covers the full picture: how the encryption actually works, what plans and pricing look like in 2026, which platforms are supported, how Proton Drive compares head-to-head with Google Drive and Dropbox, and where it honestly falls short.
How Proton Drive's zero-knowledge encryption works
Understanding what makes Proton Drive different requires a brief look under the hood, because the architecture is the product.
Step 1 — Master key derivation. When you create a Proton account, your password goes through Argon2id (64 MB memory, 3 iterations, parallelism 4) to derive a master key. This master key never exists on Proton's servers in any form. Proton stores only a bcrypt hash sufficient for authentication — not sufficient for decryption.
Step 2 — Per-folder share keys. Each folder in Proton Drive has an OpenPGP key pair generated locally on account creation (Curve25519 by default since 2023). Folder share keys are encrypted for every user with access to that folder. Adding a collaborator to a shared folder means encrypting the share key for their public key — Proton never sees the underlying plaintext key.
Step 3 — Per-file content encryption. Each individual file gets a unique AES-256-GCM content key, generated from the OS cryptographic random number generator (/dev/urandom on Linux, SecRandomCopyBytes on macOS). The file is encrypted in 4 MB blocks with a unique nonce per block, then the content key is itself encrypted with the parent folder's share key. The double-layered encrypted payload then travels over HTTPS TLS 1.3 to Proton's servers.
Network-level verification. Because encryption happens client-side, everything that leaves your device is ciphertext: a captured upload is statistically indistinguishable from a random stream, so the Proton server only ever sees noise.
This isn't marketing copy. The web client code implementing this entire flow is open-source at github.com/ProtonMail/WebClients, independently audited by Securitum in 2024 (full report published, zero High or Critical findings).
Swiss jurisdiction — why it matters for cloud storage
Proton AG is registered in Plan-les-Ouates, canton of Geneva (CHE-292.554.426). Storage servers are physically located in Switzerland (Lausanne and Attinghausen). This matters for three reasons.
Outside the CLOUD Act. The US CLOUD Act allows American authorities to compel US-based cloud providers to hand over data stored anywhere in the world. Proton AG has no US legal entity (verified on SEC EDGAR), so the CLOUD Act has no extraterritorial force over them. Any US disclosure request must go through a letter rogatory accepted by the Geneva cantonal court — a significantly higher legal bar.
Outside all Eyes alliances. Switzerland is not a member of the 5, 9 or 14 Eyes intelligence sharing alliances. Intelligence agencies in those alliances cannot request bulk data sharing from Swiss authorities under normal treaty arrangements.
GDPR adequacy without SCCs. Switzerland benefits from a European Commission adequacy decision (2000/518/EC), meaning EU businesses can transfer data to Proton Drive without Standard Contractual Clauses or Transfer Impact Assessments. From a legal compliance perspective, using Proton Drive is equivalent to using a French cloud provider for EU companies — a significant operational simplification post-Schrems II.
For further analysis of the legal implications, see our CLOUD Act vs GDPR analysis.
Plans and pricing in 2026
Four active tiers as of June 2026 (prices verified on proton.me/drive/pricing on 2026-06-10):
| Plan | Storage | Annual price | Monthly price |
|---|---|---|---|
| Free | 1 GB | €0 | €0 |
| Plus | 200 GB | €4.99/month | €9.99/month |
| Family | 3 TB | €12.99/month | €19.99/month |
| Unlimited (bundle) | 500 GB + Mail + VPN + Calendar | €9.99/month | €12.99/month |
The math for existing Proton users. If you already use Proton Mail (€4.99/month) and Proton VPN (€9.99/month), those two services alone cost €14.98/month. The Unlimited bundle at €9.99/month gives you both services plus 500 GB zero-knowledge Drive plus Calendar. The bundle saves you €5/month and adds 500 GB encrypted storage effectively at negative cost.
The math for new users. Starting from scratch, Plus 200 GB at €4.99/month annual is the right entry point. 200 GB covers 90% of individual use cases (photos, documents, laptop backups). Upgrading to Unlimited makes economic sense the moment you consider migrating your email to Proton Mail.
No lifetime deal. Proton AG has publicly stated they do not plan a lifetime model, citing the recurring cost of Swiss data center infrastructure and annual security audits. If a one-time payment amortized over years is your primary criterion, see pCloud Crypto with Swiss jurisdiction and a 2 TB lifetime plan at €199 — a legitimate alternative with a different privacy trade-off (zero-knowledge requires the paid Crypto add-on, not included by default).
Try Proton Drive for free
Zero-knowledge by default · Swiss jurisdiction · Open-source · Free 1 GB · Plus from €4.99/month
Native apps and platform support
Proton Drive's app ecosystem has matured considerably since the 2024 beta exit.
Desktop (Windows, macOS, Linux). The v2.x desktop client (released late 2025) supports upload resume-on-disconnect, 4 MB block-level differential sync (only changed blocks retransmit, not entire files), and background sync with configurable pause windows. The Linux AppImage client reached feature parity with Windows and macOS in the v2.4 release — a major milestone for the privacy-conscious Linux userbase.
Mobile (Android, iOS). The Android app integrates with the native share sheet, allowing any app to save files directly to Proton Drive. Background photo upload works without requiring the app to be open. The iOS app appears as a native Files.app provider, meaning Proton Drive shows up as a storage location in any iOS app using the standard document picker. One friction point on iOS: enabling automatic iCloud Library photo upload to Proton Drive requires disabling iCloud Photos simultaneously to avoid double-consuming local storage.
Web (any browser). The web client performs E2E encryption entirely in JavaScript WebCrypto — your files are encrypted in the browser before transmission. The web client code is open-source and auditable. Firefox, Chrome and Safari are all supported with full functionality.
Encrypted sharing. Sharing with a non-Proton recipient uses a password-protected link. The recipient opens the link in their browser, enters the password, and decryption happens locally in JavaScript — the password is never transmitted to Proton. Link expiry is configurable from 1 hour to 90 days. The UX limitation: the password must be transmitted to the recipient over a separate trusted channel (Signal, in-person), which is cryptographically correct but operationally less convenient than a simple public Dropbox link.
Proton Drive vs Google Drive vs Dropbox
The comparison that matters most for most people switching from mainstream cloud storage.
| Criterion | Proton Drive | Google Drive | Dropbox |
|---|---|---|---|
| Encryption model | Zero-knowledge client-side (AES-256-GCM + OpenPGP) | At-rest server-side (provider holds keys) | At-rest server-side (provider holds keys) |
| Jurisdiction | Switzerland (Geneva), outside CLOUD Act + all Eyes | USA (CLOUD Act applicable) | USA (CLOUD Act applicable) |
| Can provider read your files? | No — technically impossible | Yes | Yes |
| Open-source clients | Yes (web + mobile) | No | No |
| Independent public audit | Securitum 2024 (full report) | None on encryption model | None on encryption model |
| Free storage | 1 GB | 15 GB | 2 GB |
| Entry-level paid plan | €4.99/month (200 GB) | $2.99/month (100 GB) | $9.99/month (2 TB) |
| Upload speed (1 Gbps fibre) | ~95 Mbps | ~300 Mbps | ~200 Mbps |
| Real-time collaboration | Files only (no Docs-equivalent) | Yes (Google Docs/Sheets/Slides) | Yes (Paper, Office integration) |
| Mobile apps | Native Android + iOS | Native Android + iOS | Native Android + iOS |
The honest trade-offs. Proton Drive wins decisively on privacy architecture: zero-knowledge by default, Swiss jurisdiction, open-source audited code. These aren't incremental improvements — they represent a fundamentally different data protection model.
Google Drive wins on price-per-gigabyte on the free tier (15 GB free vs Proton's 1 GB) and on real-time collaborative editing — Google Docs, Sheets and Slides have no equivalent in Proton Drive, which is a file storage and sync service, not an office suite. Dropbox wins on established ecosystem integrations (thousands of third-party SaaS integrations, Paper for lightweight collaboration, Capture for video).
Who should switch. If your primary use case is storing files you want protected from both external breaches and provider access — documents, photos, backups, confidential professional materials — Proton Drive is the structurally correct choice. If your primary use case is collaborative editing of shared spreadsheets and documents with a mixed team, Google Workspace remains the more practical tool, at the cost of provider-held keys.
Proton Drive vs pCloud — the encrypted cloud storage comparison
For users who have already decided they need zero-knowledge cloud storage, the relevant comparison is Proton Drive versus pCloud with the Crypto add-on. Our detailed three-way comparison including Internxt covers this in full, but the headline findings:
Zero-knowledge by default. Proton Drive encrypts everything on your account, always, with no option to turn it off. pCloud only encrypts the Crypto Folder — the dedicated E2E-encrypted vault — while the rest of your pCloud account uses standard at-rest encryption. If you want all your files protected without maintaining a mental map of which folder is encrypted, Proton Drive is structurally simpler.
Lifetime plan availability. pCloud offers a one-time 2 TB lifetime plan at €199. Over five years at €4.99/month, Proton Drive Plus costs €300. If you're optimizing for total cost of ownership over 5-10 years and don't need the full Proton ecosystem, pCloud's lifetime math is hard to argue with.
Ecosystem depth. Proton Drive exists within a vertically integrated privacy stack: Proton Mail, Proton VPN, Proton Calendar, Proton Pass (password manager). If you're building an all-Proton privacy stack, the Unlimited bundle at €9.99/month delivers extraordinary value. pCloud is a standalone cloud storage product with no comparable ecosystem.
For a thorough evaluation of the best zero-knowledge options available, see our guide to encrypted cloud storage services in 2026.
Real limitations worth knowing before you commit
Here are the limitations of Proton Drive (on a Plus 200 GB account) that marketing copy won't tell you.
No anonymous public sharing. If you need to distribute a file to hundreds of people who don't have Proton accounts, the password-protected link workflow requires each recipient to separately receive the password over an out-of-band channel. For a team of 3 sharing confidential documents, this is fine. For distributing a public download to 500 people, it's the wrong tool.
Upload speed during large migrations. The 50 GB initial migration from Google Drive took 6h28 on 1 Gbps fibre — versus 4h10 for the equivalent pCloud migration. The ~60% overhead comes from client-side crypto. For ongoing daily sync of a working document folder, you will never notice this. For the initial one-time migration of a large archive, budget extra time.
Subscription-only model. No lifetime plan exists and Proton AG has stated publicly there are no plans to introduce one. If you're evaluating cloud storage on a 10-year total cost of ownership horizon, this matters.
Version history ceiling. Plus gives you 60 days of version history. Unlimited and Family give you 1 year. There is no infinite-history option comparable to Dropbox's Extended Version History. If you need time-machine-style forensic recovery going back years, this is a real gap.
Young ecosystem for some integrations. Third-party SaaS integrations with Proton Drive are significantly sparser than Dropbox or Google Drive. If your workflow depends on automatic Zapier/Make connections between cloud storage and your other business tools, Dropbox remains ahead.
Who should use Proton Drive in 2026
Proton Drive is the right choice if:
- You want zero-knowledge by default on your entire account — not a paid add-on, not a dedicated folder, not an optional toggle.
- You already use any Proton service (Mail, VPN, Calendar) — the Unlimited bundle becomes immediately the most economical option.
- Swiss jurisdiction and physical server location in Switzerland are hard requirements (journalists, lawyers, doctors, executives handling confidential data, EU businesses post-Schrems III).
- You want open-source, audited clients you can verify yourself — unlike Google Drive, Dropbox, or pCloud.
- You operate across devices (Windows, macOS, Linux, Android, iOS) and need native sync on all platforms.
Consider alternatives if:
- You need real-time collaborative editing (Google Docs/Sheets equivalent) — Proton Drive is file storage, not an office suite.
- You want a lifetime deal with a one-time payment and don't need the full Proton ecosystem → pCloud Lifetime 2 TB at €199.
- You need massive anonymous public file distribution to recipients who won't receive individual passwords.
- You have a 10+ year total cost of ownership constraint that makes the subscription model unworkable.
- Your main threat model is ransomware backup, not privacy — in that case, a cold backup strategy matters more than jurisdiction.
For a broader view of the landscape, our guide to the best encrypted cloud storage in 2026 covers six zero-knowledge providers with a side-by-side comparison.
Try Proton Drive — free to start
Zero-knowledge on 100% of your account · Swiss jurisdiction · Open-source clients · Plus from €4.99/month
FAQ — Proton Drive cloud storage
Try Proton Drive → end-to-end encrypted
Swiss · open-source · free tier
