Passkeys Explained: Killing the Password for Good
How your phone became your strongest login

The password has had a remarkable run for something nobody likes. It is the default way we prove who we are online, and it is also the single most reliable way attackers break in. Passkeys are the industry’s serious attempt to retire it, and unlike most “the password is dead” headlines of the past decade, this one is actually shipping. Here is what a passkey is, why it is so much harder to steal than a password, and where it still falls short.
1 Why Passwords Fail
Passwords fail for reasons that have nothing to do with how clever you are at choosing them. The first problem is phishing. A convincing fake login page asks for your password, you type it in, and the attacker now has it. No amount of length or special characters helps, because you handed it over willingly to the wrong door.
The second problem is reuse. There are too many accounts and only one human memory, so people recycle the same password across dozens of sites. When one of those sites is breached, attackers take the leaked password and try it everywhere else, a tactic called credential stuffing. The third problem is breaches themselves: every password you have ever set is stored somewhere, and “somewhere” gets hacked with depressing regularity. Even hashed passwords can be cracked offline given enough time and a weak choice.
The common thread is that a password is a shared secret. Both you and the server know it, which means it can be intercepted, guessed, leaked, or tricked out of you. Passkeys break that pattern entirely.
2 What a Passkey Actually Is
A passkey is built on public-key cryptography, standardised under the names FIDO2 and WebAuthn. Instead of one shared secret, your device generates a pair of keys when you register with a site: a private key and a public key.
The public key is mathematically linked to the private key, but you cannot derive one from the other. So the split of duties is simple. The website keeps your public key. Your device keeps the private key. The crucial property is this: the private key never leaves your device. It is not transmitted, not stored on the server, and never typed into a form. There is no shared secret to steal, because the only secret lives in one place and never moves.
Registration
device → generates (private_key, public_key)
device → sends public_key to website
device → keeps private_key, locked in secure hardwareIf a website storing passkeys is breached, the attacker walks away with a pile of public keys, which are useless on their own. A breach that once leaked millions of crackable passwords now leaks the cryptographic equivalent of a list of padlocks with no keys to fit them.
3 How a Passkey Login Works
Logging in with a passkey is a challenge-and-response. The site does not ask “what is your secret?” but rather “prove you hold the matching private key”, without the key ever being revealed.
Login
website → sends a random challenge
device → signs the challenge with private_key
device → returns the signature
website → verifies the signature using public_key
✓ signature valid → you are who you claimBecause the challenge is random and different every time, a signature captured from one login is worthless for the next. There is nothing to replay, nothing to phish, and nothing on the server worth stealing. The whole exchange happens in a fraction of a second, and from your point of view you simply tap a prompt.
4 Biometrics Are a Local Unlock, Not a Transmission
A persistent misconception is that passkeys “send your fingerprint to the website”. They do not. Your face or fingerprint is used locally, on your own device, purely to unlock the private key so it can sign the challenge. The biometric data never travels across the network and the website never sees it.
Think of the fingerprint as the way you open your own safe at home. The bank you are logging into never receives the fingerprint, never stores it, and would not know what to do with it if it did. This separation matters: even an organisation you do not fully trust gains nothing biometric about you. The face unlock is between you and your hardware; the cryptography is what crosses the wire.
5 Synced Versus Device-Bound Passkeys
Passkeys come in two flavours, and the difference is mostly about convenience versus assurance.
Synced passkeys are backed up to a cloud keychain, Apple’s, Google’s, a password manager’s, and encrypted end-to-end so the provider cannot read them. Buy a new phone, sign in to your account, and your passkeys reappear. This is what makes passkeys usable for ordinary people: lose your device and you have not lost your logins.
Device-bound passkeys never leave the single piece of hardware that created them, often a physical security key. They offer the highest assurance, because there is exactly one copy in the world, but they put the burden of backup squarely on you. Most consumers will, and should, use synced passkeys. High-security environments may prefer device-bound. Both use the identical underlying cryptography; they differ only in where the private key is allowed to live.
6 Phishing Resistance, by Design
The standout property of passkeys is that they are phishing-resistant by design, not by user vigilance. During registration and login, the passkey is bound to the website’s actual domain. The browser and operating system enforce this binding behind the scenes.
So if you land on a lookalike site at a near-identical address, your device simply will not offer the passkey. There is no matching credential for the fraudulent domain, so there is nothing to hand over, and nothing for you to fat-finger into the wrong box. The entire category of “user was tricked into entering credentials on a fake page” disappears. You cannot give away what the system refuses to release.
7 Where Passkeys Still Fall Short
Passkeys are excellent, not perfect, and pretending otherwise helps nobody.
Recovery is the hard problem. If your secret is bound to hardware, what happens when the hardware is lost, stolen, or bricked? Synced passkeys lean on your cloud account, which means the security of your entire login estate can collapse back to the strength of that one account’s recovery process. Many services still keep a password or SMS code as a fallback, quietly reintroducing the very weakness passkeys were meant to remove.
Account sharing is awkward. Households that cheerfully share one streaming password find passkeys, which are tied to individual devices and biometrics, distinctly uncooperative. The model assumes one identity, one person.
Ecosystem lock-in is real. Moving passkeys between an Apple keychain, a Google account, and a third-party manager has improved but is still not seamless. There is a genuine risk of finding your keys comfortably trapped inside one vendor’s walled garden.
Coverage is uneven. Not every site supports passkeys yet, so for now you will run both systems side by side rather than deleting the password manager.
8 How to Start Using Them
You do not need to convert your entire digital life overnight. Begin with the accounts that matter most: email, banking, and your primary cloud account, since these are the ones that unlock everything else.
Visit the security settings of each, look for “passkeys” or “sign in without a password”, and follow the prompt to create one. Your device handles the cryptography; you just confirm with a tap or a glance. Keep a sensible recovery method in place, a hardware key in a drawer, or trustworthy backup codes, so that a lost phone is an inconvenience rather than a lockout. Then add passkeys to other services as they offer them.
9 The Bottom Line
Passwords fail because they are a secret you share, and anything shared can be stolen. Passkeys replace that shared secret with a private key that never leaves your device and a public key that is worthless to thieves, wrapped in a login flow that simply refuses to work on a fake site. The remaining rough edges, recovery, sharing, and lock-in, are real and worth watching, but they are problems of polish rather than principle. For the first time, “the password is dead” looks less like a slogan and more like a forecast.