Encryptie is opgelost: de echte strijd om veilige communicatie begint

Hacker News May 2026
Source: Hacker NewsArchive: May 2026
End-to-end-encryptie is de standaard geworden. Het echte grensgebied voor veilige communicatie is niet langer cryptografisch — het is de rommelige kruising van identiteitsverificatie, metadata-bescherming, cross-platform interoperabiliteit en duurzame bedrijfsmodellen. AINews ontleedt de resterende uitdaging.
The article body is currently shown in English by default. You can generate the full version in this language on demand.

The encryption wars are over, and the technology has won. Protocols like Signal and Matrix are mature enough to serve as industry standards, yet the most popular messaging apps — WhatsApp, Telegram, iMessage — still expose users to metadata leaks, insecure contact discovery, and opaque cloud backup policies. The industry has shifted from 'how to encrypt' to 'how to make encryption truly usable and trustworthy.'

Key findings from AINews analysis:
- Metadata remains the Achilles' heel. Even with perfect end-to-end encryption, who you talk to, when, and from where reveals sensitive patterns. Signal has pioneered techniques like sealed sender and private contact discovery, but most apps still collect this data.
- Contact discovery is a privacy minefield. Uploading your address book to a server to find friends leaks social graphs. Private set intersection and noise-based approaches exist but remain slow and hard to deploy at scale.
- Cloud backups create a backdoor. iMessage backups on iCloud are not end-to-end encrypted by default. WhatsApp's cloud backups only became fully encrypted in 2021 after years of pressure.
- Cross-platform interoperability is a design nightmare. The Matrix protocol enables federation, but bridging to Signal or WhatsApp requires trust in bridge operators. The EU's Digital Markets Act may force interoperability, but technical and security hurdles remain.
- Business models are broken. Most secure communication apps rely on venture capital or donations. Signal's annual budget is around $40 million, funded by a founder loan. Telegram burns cash on server costs. Without a path to profitability, long-term viability is uncertain.

The next breakthrough will not come from a new cipher. It will come from a mainstream platform proving that privacy can be monetized without being sold — through enterprise compliance tools, secure cloud sync, or premium identity verification services. The encryption problem is solved. The trust, usability, and economics problems are just beginning.

Technical Deep Dive

The cryptographic foundations of modern secure messaging are remarkably solid. The Signal Protocol — used by Signal, WhatsApp, and Google Messages — combines the Double Ratchet algorithm, prekeys, and the X3DH key agreement to provide forward secrecy and future secrecy. The protocol has been formally verified by academic researchers and is considered state-of-the-art.

Matrix, an open standard for decentralized communication, uses a different approach. It relies on Olm (a Double Ratchet implementation) for peer-to-peer encryption and Megolm for group chats, where a single ratchet is shared among group members to reduce overhead. The trade-off is that Megolm does not provide forward secrecy for past messages if a session key is compromised — though the Matrix team has been working on improvements.

Where the real technical challenges lie:

1. Metadata protection. Signal's 'sealed sender' hides the sender's identity from the server until the recipient is found. The server only sees an encrypted envelope with a delivery token. This is a significant engineering achievement, but it increases latency and server load. Most apps do not implement this.

2. Private contact discovery. The naive approach — upload your entire address book to the server — leaks your social graph. Signal uses a technique called 'private contact discovery' based on Intel SGX enclaves, where the server processes hashed phone numbers inside a hardware-secured environment. This is computationally expensive and requires trust in Intel's SGX implementation, which has known vulnerabilities. An alternative is private set intersection (PSI) using oblivious transfer, but PSI protocols are still too slow for billions of contacts.

3. Cloud backup encryption. iMessage backups in iCloud are encrypted but Apple holds the keys — meaning they can be compelled to hand over messages. WhatsApp introduced end-to-end encrypted backups in 2021, but users must opt in and remember a 64-digit encryption key or set a password. The user experience friction is high.

4. Cross-platform bridging. Matrix bridges to WhatsApp, Telegram, and Signal exist (e.g., mautrix-whatsapp, mautrix-signal), but they require running a bridge server that decrypts and re-encrypts messages. This creates a trust point and a potential attack surface. The bridge operator could theoretically read messages in transit.

Benchmark comparison of key protocols:

| Protocol | Forward Secrecy | Group Chat Efficiency | Metadata Protection | Contact Discovery Privacy | Decentralization |
|---|---|---|---|---|---|
| Signal Protocol | Yes (Double Ratchet) | Good (sender keys) | Sealed sender (optional) | SGX-based private discovery | No (centralized directory) |
| Matrix (Olm/Megolm) | Partial (Olm yes, Megolm no) | Good (Megolm shared key) | No (server sees room metadata) | No (upload contacts to homeserver) | Yes (federation) |
| MTProto (Telegram) | No (secret chats only) | Poor (no e2e for groups by default) | No | No | No |
| iMessage | Yes | Good | Partial (Apple sees metadata) | No (Apple sees contact graph) | No |

Data Takeaway: Signal leads in privacy features but sacrifices decentralization and scalability. Matrix offers decentralization but lags in metadata protection and forward secrecy for groups. No protocol currently solves all challenges simultaneously.

Key Players & Case Studies

Signal Foundation — The gold standard for privacy-first messaging. Signal's protocol is used by over 1 billion people via WhatsApp, but Signal itself has only ~40 million monthly active users. The foundation operates on a budget of ~$40 million/year, funded by a loan from founder Brian Acton. Signal has no ads, no data collection, and no clear path to revenue. Its recent addition of Stories and usernames (instead of phone numbers) shows an attempt to improve usability without compromising privacy.

WhatsApp (Meta) — The largest encrypted messaging platform with over 2 billion users. WhatsApp adopted the Signal Protocol in 2016, but its trustworthiness is undermined by Meta's data collection practices. WhatsApp collects metadata (phone numbers, device info, usage patterns) and shares it with Meta for limited purposes. The 2021 privacy policy update caused a mass exodus to Signal and Telegram, though most users eventually returned. WhatsApp's enterprise API offers business messaging with end-to-end encryption, but the business can see message content — a design choice that creates a trust gap.

Telegram — Not end-to-end encrypted by default. Only 'Secret Chats' use MTProto encryption, and group chats are encrypted server-side. Telegram's founder Pavel Durov has been criticized for misleading marketing. Telegram has 800 million monthly active users and monetizes through premium subscriptions ($4.99/month) and advertising on public channels. The platform's speed and feature set (bots, channels, large groups) make it popular, but security researchers consistently rank it below Signal and WhatsApp.

Apple iMessage — End-to-end encrypted between Apple devices, but iCloud backups are not encrypted by default. Apple's stance on privacy is strong in marketing but inconsistent in practice. The company has resisted adding E2EE to iCloud backups despite pressure from security researchers. iMessage's lock-in to Apple hardware limits its reach.

Matrix.org Foundation — The leading open-source, decentralized alternative. Matrix powers the Element app and is used by organizations like the French government, Mozilla, and KDE. Matrix's federation model allows anyone to run their own server, but this creates complexity for average users. The protocol is still evolving — the recent 'MSC 3912' proposal aims to add private contact discovery using PSI.

Competitive feature comparison:

| Feature | Signal | WhatsApp | Telegram | iMessage | Matrix/Element |
|---|---|---|---|---|---|
| Default E2EE | Yes | Yes | No (only secret chats) | Yes (device-to-device) | Yes |
| Metadata protection | High | Low | Low | Medium | Low |
| Open source | Yes | No | No | No | Yes |
| Decentralized | No | No | No | No | Yes |
| Cross-platform | Yes | Yes | Yes | Apple only | Yes (via bridges) |
| Business model | Donations/grants | Meta ads | Premium + ads | Hardware sales | Donations/enterprise |
| Users (MAU) | ~40M | ~2B | ~800M | ~1B (est.) | ~60M (est.) |

Data Takeaway: No single platform excels across all dimensions. Signal is the privacy leader but has negligible market share. WhatsApp has scale but is owned by Meta. Telegram has features but not real E2EE. The market is fragmented, and users must choose between privacy and convenience.

Industry Impact & Market Dynamics

The secure messaging market is at an inflection point. The EU's Digital Markets Act (DMA) will require gatekeeper platforms like WhatsApp and iMessage to offer interoperability with smaller messaging services. This could force WhatsApp to open its protocol to third-party clients — a move that Meta has resisted, citing security concerns. If interoperability becomes mandatory, it could create a unified encrypted messaging ecosystem, but the technical challenges are immense.

Market size and growth:

| Metric | Value | Source |
|---|---|---|
| Global secure messaging market (2024) | $12.5B | Industry estimates |
| Projected market (2030) | $35.8B | CAGR 19.2% |
| WhatsApp revenue (2023) | $1.3B (from business API) | Meta filings |
| Signal annual budget | ~$40M | Signal Foundation |
| Telegram revenue (2023) | ~$50M (premium + ads) | Durov's statements |
| Venture funding for privacy messaging (2020-2024) | $2.1B | PitchBook |

Data Takeaway: The market is growing rapidly, but most revenue comes from business messaging (WhatsApp API) rather than consumer subscriptions. Consumer willingness to pay for privacy is low — Signal's donation model raises only ~$20M/year from users.

Business model innovation:

The critical question is whether privacy can be monetized without compromising trust. Several models are emerging:

- Enterprise compliance tools: Signal is exploring a business tier that offers audit logs and compliance features for regulated industries. This could generate revenue without touching user messages.
- Secure cloud sync: Apple's iCloud+ offers private relay and hide-my-email for $0.99/month. A similar model for encrypted backups could work.
- Premium identity verification: Keybase (acquired by Zoom) offered cryptographic identity proofs. A service that verifies user identities without revealing them could be valuable.
- Donation-based + grants: Signal's model is fragile. A single donor (Brian Acton) funded the foundation, but he has indicated he cannot do so indefinitely.

Risks, Limitations & Open Questions

1. Regulatory pressure vs. security. The UK's Online Safety Bill and the EU's chat control proposals threaten to mandate client-side scanning for illegal content. This would break end-to-end encryption by requiring a backdoor on the device. Signal has threatened to leave the UK market rather than comply.

2. Quantum computing threat. Current E2EE protocols rely on discrete log and RSA. Post-quantum cryptography (e.g., CRYSTALS-Kyber) is being standardized, but migrating billions of devices will take years. Signal has already begun testing post-quantum extensions.

3. User error. Even the best encryption fails if users ignore warnings. Studies show that most users do not verify safety numbers, and phishing attacks can bypass encryption entirely.

4. Centralization of trust. Even in decentralized systems like Matrix, most users rely on a few large homeservers (e.g., matrix.org). If those servers are compromised, metadata is exposed.

5. The 'walled garden' problem. Each platform has its own identity system (phone numbers, email, usernames). Cross-platform messaging requires a universal identity layer, which does not exist.

AINews Verdict & Predictions

Prediction 1: WhatsApp will be forced to open its protocol. The DMA will mandate interoperability by 2025. WhatsApp will implement a limited bridge, likely through Matrix, but will restrict features (no group E2EE across platforms initially). This will create a two-tier system: native WhatsApp users with full features, and bridged users with reduced functionality.

Prediction 2: Signal will remain the privacy benchmark but will not achieve mainstream adoption. Without a sustainable business model, Signal will struggle to scale. It will survive as a niche tool for journalists, activists, and security-conscious users, similar to how PGP remains the standard for email encryption despite being unusable for most people.

Prediction 3: The next breakthrough will come from identity-layer innovation. A protocol that combines Signal-grade encryption with decentralized identity (e.g., using the IETF's Messaging Layer Security (MLS) standard) could solve the contact discovery and metadata problems simultaneously. The MLS protocol is being standardized by the IETF and is already implemented in open-source libraries (e.g., MLSpp). This could become the foundation for the next generation of secure messaging.

Prediction 4: Apple will eventually add E2EE to iCloud backups. The pressure from security researchers and the EU will force Apple's hand. This will be a major win for user privacy, but it will also reduce Apple's ability to comply with law enforcement requests, creating a political backlash.

Prediction 5: The business model question will be solved by enterprise demand. Regulated industries (healthcare, finance, legal) need secure communication that is auditable and compliant. A platform that offers E2EE plus enterprise-grade logging (without decrypting messages) could charge $10-20/user/month. This is the most likely path to profitability for Signal or a new entrant.

The encryption problem is solved. The remaining challenges — trust, usability, and economics — are harder than any cryptographic puzzle. The winners will be those who can make privacy invisible, effortless, and profitable.

More from Hacker News

Lokale LLM's op Apple Silicon: De verborgen kosten die cloud-API's verslaanFor years, developers have championed local LLM inference on Apple Silicon as a cost-saving measure, leveraging the M-seMarktkapitalisatie Nvidia overtreft BBP Duitsland: AI-economie herschrijft wereldordeIn a landmark event that crystallizes the dawn of a new economic era, Nvidia's market capitalization has officially surpVoorbij RAG: Waarom AI-agenten causale grafieken nodig hebben om te denken, niet alleen om op te halenThe AI agent architecture is undergoing a fundamental transformation. For years, Retrieval-Augmented Generation (RAG) haOpen source hub3526 indexed articles from Hacker News

Archive

May 20261821 published articles

Further Reading

Frankrijk's aanval op encryptie: de strijd die digitaal vertrouwen kan brekenFrankrijk voert zijn oorlog tegen versleutelde communicatie op door wetgeving voor te stellen die berichtenapps verplichMeta schrapt end-to-end-encryptie op Instagram: privacybelofte opgeofferd voor advertentie-inkomstenMeta heeft plotseling end-to-end-encryptie voor Instagram-directberichten uitgeschakeld, waarmee een langdurige publiekeMarktkapitalisatie Nvidia overtreft BBP Duitsland: AI-economie herschrijft wereldordeDe marktkapitalisatie van Nvidia overtreft nu het jaarlijkse BBP van Duitsland, een verbluffende mijlpaal die de waarde Codiff: De 16-minuten AI-codebeoordelingstool die alles verandertEen ontwikkelaar bouwde Codiff in 16 minuten met behulp van een LLM — een tool die speciaal is ontworpen om de omvangrij

常见问题

这篇关于“Encryption Is Solved: The Real Battle for Secure Communication Begins”的文章讲了什么?

The encryption wars are over, and the technology has won. Protocols like Signal and Matrix are mature enough to serve as industry standards, yet the most popular messaging apps — W…

从“Is Signal really more secure than WhatsApp?”看,这件事为什么值得关注?

The cryptographic foundations of modern secure messaging are remarkably solid. The Signal Protocol — used by Signal, WhatsApp, and Google Messages — combines the Double Ratchet algorithm, prekeys, and the X3DH key agreem…

如果想继续追踪“Can Telegram be trusted for private conversations?”,应该重点看什么?

可以继续查看本文整理的原文链接、相关文章和 AI 分析部分,快速了解事件背景、影响与后续进展。