In February 2014, Facebook acquired WhatsApp for $19 billion — at the time, the largest acquisition of a venture-backed company in history. Brian Acton, who had co-founded WhatsApp with Jan Koum just five years earlier, walked away from the deal with approximately $3 billion. Three years later, he walked away from Facebook itself, leaving $850 million in unvested stock on the table. Then he donated $50 million to help launch the Signal Foundation, the nonprofit behind the end-to-end encrypted messaging app that has become the gold standard for private communication. The trajectory — from building one of the most widely used messaging platforms on Earth to funding its most privacy-focused competitor — tells you everything you need to know about Brian Acton’s priorities. He chose principle over profit at a scale that few people in Silicon Valley history have ever matched. His career, spanning Yahoo’s early growth years through the mobile messaging revolution, represents a rare case study in how a deeply technical engineer can shape the communication infrastructure of billions of people while refusing to compromise on the values that motivated him in the first place.
Early Life and Education
Brian Acton was born on February 17, 1972, in Michigan, United States. He grew up in a middle-class household where technology was not yet the omnipresent cultural force it would become. Acton developed an early interest in computers and engineering, a path that would lead him to Stanford University, one of the epicenters of the emerging tech industry in Silicon Valley.
At Stanford, Acton studied computer science, graduating in 1994 with a Bachelor of Science degree. Stanford in the early 1990s was a crucible for future tech entrepreneurs — Larry Page and Sergey Brin would arrive shortly after to begin the research project that became Google. The university’s proximity to the venture capital ecosystem on Sand Hill Road and its culture of turning academic research into startups created an environment where ambitious computer science graduates could see a direct path from code to product to company.
Acton’s education at Stanford gave him a solid foundation in systems programming, distributed systems, and software engineering. But what Stanford perhaps gave him most was a network — it was through Silicon Valley’s interconnected tech community that Acton would eventually meet Jan Koum, the Ukrainian immigrant who would become his closest collaborator and co-founder.
The Yahoo Years
After graduating from Stanford, Acton joined Apple Computer in 1994, working as a software tester. The stint at Apple was brief — about a year — but it gave him his first exposure to the culture of a major technology company and the realities of shipping consumer software products. In 1996, he moved to Yahoo, which was then one of the fastest-growing companies in the world.
Acton spent eleven years at Yahoo, from 1996 to 2007. Yahoo in the late 1990s was not the declining portal it would later become — it was the gateway to the internet for hundreds of millions of people. Acton worked in Yahoo’s infrastructure division as Director of Engineering, dealing with the challenges of scaling systems to serve massive user bases — system reliability, data infrastructure, and the kind of backend engineering that determines whether a service can handle ten users or ten million.
It was at Yahoo that Acton met Jan Koum, who joined the company in 1997 as an infrastructure engineer. The two became close friends, bonding over a shared pragmatic approach to engineering and, increasingly, a shared discomfort with the direction of the internet advertising industry. Yahoo’s business model, like that of most web companies at the time, depended on collecting user data to serve targeted advertisements. Both Acton and Koum grew increasingly uneasy with this model, a discomfort that would later become the philosophical foundation of WhatsApp.
After leaving Yahoo in 2007, Acton took some time off to travel and consider his next move. In 2009, both he and Koum applied for jobs at Facebook and were rejected. Acton famously tweeted about his Facebook rejection: he had also been turned down by Twitter. These rejections, in retrospect, were among the most consequential in Silicon Valley history. Had either company hired Acton or Koum, WhatsApp might never have existed.
Building WhatsApp
The Genesis
Jan Koum founded WhatsApp in 2009, initially as a simple status-update app — a way for people to set a status message (like “at the gym” or “low battery”) that their contacts could see. Acton was not a co-founder at the very beginning, but he was involved from the earliest days as an advisor and supporter. When Koum realized the app’s potential as a messaging platform — particularly after Apple introduced push notifications in June 2009, allowing WhatsApp to alert users to incoming messages — Acton officially joined as a co-founder in November 2009, contributing seed funding from his own savings.
The founding philosophy of WhatsApp was simple and radical: no ads, no games, no gimmicks. The app would charge a small annual fee ($0.99 after the first year free), and in exchange, users would get a fast, reliable messaging service that did not harvest their data for advertising purposes. This was the anti-Facebook model, built by two engineers who had watched the advertising-driven internet economy from the inside and decided they wanted no part of it.
The technical architecture of WhatsApp reflected this philosophy. The backend was built on Erlang, a programming language developed by Ericsson for telecommunications systems. Erlang was designed for high concurrency, fault tolerance, and distributed computing — exactly the properties needed for a messaging platform that would eventually handle billions of messages per day. The choice of Erlang was unconventional and deeply technical, typical of Acton and Koum’s engineering-first approach.
%% WhatsApp's choice of Erlang was driven by its concurrency model.
%% Erlang processes are lightweight — a single server can handle
%% millions of concurrent connections. This is the pattern that
%% allowed WhatsApp to serve 900M+ users with only 50 engineers.
%% Simplified example of Erlang's message-passing concurrency:
%% Each connected user gets their own lightweight process.
-module(message_router).
-export([start/0, route_message/3, user_session/1]).
%% Start the message router
start() ->
register(router, spawn(fun() -> router_loop(#{}) end)),
io:format("Message router started~n").
%% Router maintains a map of user_id => process_pid
router_loop(Sessions) ->
receive
{register, UserId, Pid} ->
router_loop(Sessions#{UserId => Pid});
{send, FromId, ToId, Message} ->
case maps:find(ToId, Sessions) of
{ok, Pid} ->
%% Deliver to online user — near-instant delivery
Pid ! {incoming, FromId, Message};
error ->
%% User offline — queue for later delivery
store_offline_message(ToId, FromId, Message)
end,
router_loop(Sessions);
{disconnect, UserId} ->
router_loop(maps:remove(UserId, Sessions))
end.
%% Each user session runs as its own Erlang process
%% This is how WhatsApp handled 2M+ connections per server
user_session(UserId) ->
receive
{incoming, FromId, Message} ->
deliver_to_device(UserId, FromId, Message),
user_session(UserId);
disconnect ->
ok
end.
store_offline_message(_To, _From, _Msg) -> ok.
deliver_to_device(_User, _From, _Msg) -> ok.
Scaling to a Billion Users
WhatsApp’s growth was extraordinary. By 2011, the app was in the top 20 in the U.S. App Store. By 2013, it had 400 million monthly active users. By the time of the Facebook acquisition in February 2014, it was processing over 50 billion messages per day — more than the entire global SMS system.
Acton’s role at WhatsApp was primarily on the business and operational side, though his engineering background informed every decision. He managed partnerships with mobile carriers, handled business strategy, and helped maintain the company’s famously lean operation. At its peak before the acquisition, WhatsApp had fewer than 55 engineers serving nearly half a billion users. This engineering efficiency — a ratio of roughly one engineer per ten million users — was a direct result of the technical choices Acton and Koum had made: the Erlang backend, the focus on simplicity, the refusal to build advertising infrastructure, and the relentless optimization of the core messaging experience.
The company’s culture was austere by Silicon Valley standards. Acton and Koum had taped a note to their desks with a single word: “No Ads.” The subscription-based revenue model meant that growth did not depend on engagement metrics, data harvesting, or dark patterns. WhatsApp needed only to be useful. This approach resonated worldwide, particularly in India, Brazil, and across Europe, where WhatsApp became the default communication platform, replacing not just SMS but, in many cases, phone calls themselves.
The Facebook Acquisition and Departure
When Facebook acquired WhatsApp in February 2014 for $19 billion, the deal came with promises. Mark Zuckerberg assured Koum and Acton that WhatsApp would operate independently and that its privacy commitments would be maintained. Both founders stayed on after the acquisition.
The tensions began almost immediately. Facebook’s business model depends on advertising, which depends on user data — the exact opposite of WhatsApp’s philosophy. As Facebook pushed to integrate WhatsApp’s user data with its advertising platform, the friction between WhatsApp’s founding principles and Facebook’s business imperatives became increasingly sharp.
In September 2017, Brian Acton left Facebook, forfeiting approximately $850 million in unvested stock. When he finally spoke publicly, he was direct: he had been pressured to monetize WhatsApp in ways that conflicted with promises made to users, including sharing phone numbers with Facebook and introducing advertising. In March 2018, Acton publicly endorsed the #DeleteFacebook movement — an extraordinary statement from a co-founder of a company Facebook had acquired for $19 billion.
The Signal Foundation
Funding the Future of Private Communication
In February 2018, Acton co-founded the Signal Foundation with Moxie Marlinspike, the cryptographer and security researcher who had created the Signal Protocol — the end-to-end encryption system that was already being used by WhatsApp, Facebook Messenger, and Skype. Acton contributed $50 million to establish the foundation as a 501(c)(3) nonprofit organization, and he served as the foundation’s executive chairman.
The Signal Foundation’s mission was to develop and maintain the Signal messaging app as a free, open-source, privacy-first tool. Unlike WhatsApp, now subject to Facebook’s commercial pressures, Signal would be governed by a nonprofit structure that could not be acquired or pressured into monetizing user data — a deliberate architectural decision to make private communication structurally resistant to the forces that had compromised WhatsApp.
Signal uses end-to-end encryption, meaning only the sender and recipient can read messages. The app collects virtually no metadata — it does not store who messaged whom, when, or how often. This represents the most privacy-respecting architecture possible for a communications platform, reflecting lessons Acton learned from watching what happened to WhatsApp after the Facebook acquisition.
// The Signal Protocol's Double Ratchet Algorithm — simplified concept
// This is the cryptographic foundation that Acton helped fund and promote.
// It provides forward secrecy: even if a key is compromised, past messages
// remain encrypted. Each message uses a unique key.
class DoubleRatchet {
constructor(sharedSecret) {
// Initial shared secret established via X3DH key agreement
this.rootKey = sharedSecret;
this.sendChainKey = null;
this.recvChainKey = null;
this.sendMessageNumber = 0;
this.recvMessageNumber = 0;
}
// Derive new keys using HKDF (HMAC-based Key Derivation Function)
// Every message gets a unique encryption key
deriveMessageKey(chainKey) {
// In real Signal Protocol, this uses HMAC-SHA256
const messageKey = hkdf(chainKey, 'MessageKey');
const nextChainKey = hkdf(chainKey, 'ChainKey');
return { messageKey, nextChainKey };
}
// Symmetric ratchet step — advance the chain for each message
// This ensures forward secrecy: old keys cannot decrypt new messages
encryptMessage(plaintext) {
const { messageKey, nextChainKey } =
this.deriveMessageKey(this.sendChainKey);
this.sendChainKey = nextChainKey;
this.sendMessageNumber++;
// AES-256-CBC encryption with the unique message key
const ciphertext = aesEncrypt(plaintext, messageKey);
// Key is immediately discarded after use
// Even if an attacker gets this key, they cannot
// derive past or future message keys
secureDelete(messageKey);
return {
ciphertext,
messageNumber: this.sendMessageNumber,
// Ratchet public key for DH ratchet step
ratchetKey: this.currentRatchetPublicKey
};
}
// Diffie-Hellman ratchet step — triggered when receiving
// a new ratchet key from the other party.
// This provides "future secrecy" — recovery from compromise
dhRatchetStep(theirRatchetPublicKey) {
const dhOutput = diffieHellman(
this.currentRatchetPrivateKey,
theirRatchetPublicKey
);
// Derive new root key and chain key
const { rootKey, chainKey } =
hkdfExpand(this.rootKey, dhOutput);
this.rootKey = rootKey;
this.recvChainKey = chainKey;
// Generate new ratchet key pair for our next send
const newKeyPair = generateKeyPair();
this.currentRatchetPrivateKey = newKeyPair.privateKey;
this.currentRatchetPublicKey = newKeyPair.publicKey;
const dhOutput2 = diffieHellman(
newKeyPair.privateKey,
theirRatchetPublicKey
);
const derived = hkdfExpand(this.rootKey, dhOutput2);
this.rootKey = derived.rootKey;
this.sendChainKey = derived.chainKey;
}
}
// Placeholder cryptographic primitives
function hkdf(key, label) { /* HMAC-SHA256 KDF */ }
function hkdfExpand(root, input) { /* HKDF-Expand */ }
function aesEncrypt(data, key) { /* AES-256-CBC */ }
function diffieHellman(priv, pub) { /* X25519 */ }
function generateKeyPair() { /* Curve25519 */ }
function secureDelete(data) { /* Zeroise memory */ }
Signal’s Growth and Impact
Under Acton’s stewardship, Signal grew from a niche tool used primarily by journalists, activists, and security professionals into a mainstream messaging app. The app saw massive surges in downloads during periods of public concern about privacy — notably in January 2021 when WhatsApp announced controversial changes to its privacy policy. During that single week, Signal gained tens of millions of new users.
By structuring Signal as a nonprofit, Acton ensured that the app could never be sold to a company like Facebook. The foundation’s funding comes from donations, not from advertising or data sales, meaning Signal’s incentives are permanently aligned with its users’ interests. It was a direct response to the lesson Acton had learned at WhatsApp: that even the most principled company can be compromised when it operates within a for-profit structure.
The technical infrastructure Acton helped fund includes the Signal Protocol, which has become the most widely deployed end-to-end encryption system in the world — used by WhatsApp (2+ billion users), Facebook Messenger, Skype, and Google Messages. Through the Signal Foundation, Acton has effectively subsidized encryption technology that protects billions of people, including many who have never used the Signal app itself. This is comparable in its ambition to the work of Phil Zimmermann, who created PGP encryption and fought the U.S. government for the right to distribute it.
Philosophy and Values
Privacy as a Fundamental Right
Acton’s philosophy on privacy is not abstract or theoretical — it is grounded in years of direct experience building products that serve billions of people. His core belief is that private communication is a fundamental human right, not a privilege that can be revoked or compromised for commercial convenience. This position puts him at odds with the dominant business model of the internet, which treats user data as a resource to be extracted and monetized.
His approach can be summarized in three principles. First, the simplest way to protect user data is not to collect it — WhatsApp’s original architecture collected minimal metadata, and Signal stores almost nothing about its users. Second, encryption should be the default, not an option, because it protects everyone including people who would never think to enable it manually. Third, the organizational structure of a technology company determines its behavior over time — a nonprofit structure removes the pressure to monetize user data at the organizational level.
Acton is not a privacy theorist — he is an engineer who has built systems used by billions. His advocacy comes from having seen, firsthand, what happens when a platform’s business incentives diverge from its users’ interests.
The Decision to Leave Money on the Table
Acton’s decision to leave $850 million in unvested stock at Facebook is frequently cited as an example of principled behavior in Silicon Valley. The decision was not impulsive — it came after months of internal conflict over Facebook’s plans to sell advertising in WhatsApp and use its user data to improve Facebook ad targeting. These plans directly contradicted the promises made during the acquisition. For Acton, the calculus was straightforward: staying would mean participating in the dismantling of the privacy commitments he had made to WhatsApp’s users. He chose to leave, and the $50 million he then contributed to the Signal Foundation funded an organization that has done more for encrypted communication than perhaps any other entity in the world.
Legacy and Impact
Brian Acton’s legacy operates on multiple levels. As a co-founder of WhatsApp, he helped build a product that fundamentally changed how billions of people communicate. WhatsApp replaced SMS in much of the world, eliminated international messaging fees, and connected people across borders with a simplicity and reliability that no previous platform had achieved. In many developing countries, WhatsApp is not just a messaging app — it is the primary infrastructure for commerce, community organization, news distribution, and family communication. For teams managing distributed projects across borders, tools that prioritize both communication efficiency and data integrity — much like Taskee does for project management — reflect the same user-first philosophy that drove WhatsApp’s original design.
As a co-founder of the Signal Foundation, Acton shifted the landscape of encrypted communication from a niche concern to a mainstream expectation. Signal demonstrated that a messaging app could be both completely private and completely usable — that encryption did not have to come at the cost of convenience. The app’s open-source codebase and nonprofit structure have made it a model for how privacy-focused technology can be built and sustained.
As a public figure who left $850 million on the table to protest the commercialization of user data, Acton set a precedent that is rare in the technology industry. His actions demonstrated that it is possible — if difficult — to prioritize user welfare over personal enrichment, and that doing so can lead to the creation of technology that is more valuable to society than the profit it forgoes. In an era when digital agencies and technology consultancies increasingly emphasize ethical data practices as a competitive advantage, Acton’s career provides a concrete demonstration that principled technology development is not just morally admirable but practically effective.
The Signal Protocol, which Acton helped fund and promote, is now embedded in products used by billions. Even people who have never heard of Brian Acton benefit from the encryption infrastructure he helped build. Whitfield Diffie’s invention of public-key cryptography laid the theoretical foundation, Phil Zimmermann’s PGP brought encryption to the masses in the 1990s, and Moxie Marlinspike’s Signal Protocol made it seamless and ubiquitous. Acton’s contribution was to provide the financial infrastructure and organizational structure that ensured this technology would remain free, open, and independent of corporate control.
Brian Acton’s career is a reminder that the most important decisions in technology are not always about what to build, but about what to refuse to build — and what to walk away from when the principles that justified building it in the first place are no longer honored.
Frequently Asked Questions
Who is Brian Acton?
Brian Acton is an American computer scientist and entrepreneur, co-founder of WhatsApp and co-founder of the Signal Foundation. He studied computer science at Stanford, spent eleven years at Yahoo, co-founded WhatsApp with Jan Koum in 2009, and after its $19 billion acquisition by Facebook, left in 2017 to co-found the Signal Foundation with a $50 million donation.
Why did Brian Acton leave Facebook?
Acton left Facebook in September 2017 because of fundamental disagreements over how WhatsApp would be monetized. Facebook pushed to integrate WhatsApp user data with its advertising platform and to introduce ads within the app — both of which contradicted the privacy promises made to WhatsApp’s users during the acquisition. Acton forfeited approximately $850 million in unvested stock by leaving early, choosing to preserve his principles over financial gain.
What is the Signal Foundation?
The Signal Foundation is a 501(c)(3) nonprofit organization co-founded by Brian Acton and Moxie Marlinspike in February 2018. Its mission is to develop and maintain the Signal messaging app and the Signal Protocol, providing free, open-source, end-to-end encrypted communication. Acton provided $50 million in initial funding. The nonprofit structure ensures Signal cannot be acquired by a corporation, keeping its incentives permanently aligned with user privacy rather than commercial interests.
How did WhatsApp achieve such efficiency with so few engineers?
WhatsApp’s engineering team famously served nearly 500 million users with fewer than 55 engineers. This was possible primarily because of three technical decisions: using Erlang for the backend (a language built for massive concurrency and fault tolerance), maintaining extreme focus on the core messaging feature (no games, no social feed, no advertising infrastructure), and optimizing relentlessly for performance and simplicity. A single WhatsApp server could handle over two million concurrent connections, making it one of the most efficient messaging architectures ever built.
What is the Signal Protocol and why is it important?
The Signal Protocol is an end-to-end encryption protocol using the Double Ratchet Algorithm, which generates a unique key for every message and provides both forward secrecy (compromised keys cannot decrypt past messages) and future secrecy (recovery from key compromise). It is used in Signal, WhatsApp, Facebook Messenger, Skype, and Google Messages, making it the most widely deployed encryption system in the world.
How much money did Brian Acton make from WhatsApp?
Acton’s share of the $19 billion Facebook acquisition was estimated at roughly $3 billion. He forfeited an additional $850 million in unvested stock when he left Facebook in 2017, and subsequently donated $50 million to co-found the Signal Foundation.
Was Brian Acton rejected by Facebook and Twitter before founding WhatsApp?
Yes. In 2009, both Acton and Jan Koum applied for jobs at Facebook and were rejected. Acton was also turned down by Twitter. Facebook would later pay $19 billion to acquire the company they built after being rejected — one of the most ironic episodes in Silicon Valley history.