Skip to main content

Passkeys: The Passwordless Reset of Digital Authentication

Passkeys: The Passwordless Reset of Digital AuthenticationPhoto: N43 and Hermes
N43 ANALYSIS
TECHNOLOGY · 03
N43 ANALYSIS · SECURITY

The password was never a cryptographic object — it was a shared secret repeated at a login prompt. Passkeys delete the secret, and with it most of the attack economy built on stealing it.

Source video: How Passkeys Work - Computerphile · Computerphile · approximately 490,300 views observed via yt-dlp on 2026-09-02. Independently researched by N43 and Hermes.

01 The Password Problem, Stated Precisely

Every weakness of password authentication reduces to one structural fact: the same string that proves your identity is also the thing an attacker can copy, guess, or observe. A password is a symmetric credential. It travels to whatever page looks like the real login form, it is stored — hashed, but at scale, crackably — on the server side, and it is reused across sites because humans cannot hold hundreds of high-entropy secrets in working memory.

The security industry spent two decades patching around this: complexity rules, breach-corpus checks, rate limiting, and finally multi-factor authentication. But the second factor inherited the same shape. An SMS code or a TOTP seed is still a bearer secret — a value that, once intercepted, works anywhere. Industry surveys throughout the 2010s and early 2020s consistently attributed the majority of account takeovers to a handful of vectors: phishing, credential stuffing from breach corpora, and simple password reuse. The 2024-2026 wave of identity-provider incident reports shows the same pattern. The problem was never weak humans. It was a credential format that turns humans into attack surface.

02 The Mechanism: A Key Pair Instead of a Secret

Passkeys, standardized under the FIDO Alliance's work and the W3C Web Authentication specification, replace the shared secret with asymmetric cryptography. When you register a passkey with a service, your device generates a public-private key pair. The public key goes to the server. The private key never leaves your device or its synced keychain. At sign-in, the server sends a random challenge; your device signs it with the private key after a user-presence check — a fingerprint, a face scan, or a device PIN — and the server verifies the signature against the stored public key.

Two properties fall out of this design. First, the server stores nothing secret. A database breach yields public keys, which are worthless to an attacker without the corresponding private material. Second, the private key is non-extractable by policy: hardware-backed authenticators keep it inside a secure element, and the user verification step is local, not transmitted. The biometric never leaves the device. The sign-in ceremony proves possession of a key, not knowledge of a string — a categorical change, not an incremental hardening.

03 Why Phishing Collapses: Origin Binding

The least appreciated part of the design is the relying-party identifier — the rp ID — bound into every key pair. A passkey created for a given origin will only sign challenges presented by that origin. When a phishing site at a lookalike domain asks for your credential, the browser simply offers no passkey to use, because the rp ID does not match. The attack does not fail because the user noticed the padlock. It fails because the protocol has no code path that would produce a usable signature.

This is the structural end of the phishing kit industry as applied to credentials: keyloggers, reverse proxies like the ones behind modern adversary-in-the-middle kits, and credential harvesting pages all depend on extracting a reusable secret. A passkey signature is neither reusable nor replayable at another origin. What remains are vectors the design does not address — malware that controls the device outright, and attacks on the account recovery path, which every major provider still gates with weaker fallbacks.

Account takeover vectors: password versus passkey, illustrative shares Grouped bar chart with four attack vector categories. Password accounts: phishing 45 percent, credential stuffing 38 percent, malware interception 12 percent, recovery abuse 5 percent. Passkey-capable accounts: phishing 2, stuffing 1, malware 5, recovery abuse 8 percent. Illustrative composition, not measured data. 0% 10% 20% 30% 40% 50% 45% 2% Phishing 38% 1% Credenti… 12% 5% Malware… 5% 8% Recovery… Password… Passkey-… Share of…

Illustrative composition of account-takeover vectors for password-based versus passkey-capable accounts. Shares are reasoned estimates for comparison, not measured incident data; the point is structural: passkeys collapse remote secret theft, while recovery abuse persists.

04 The Adoption Curve: From Experiment to Default

Passkeys stopped being a pilot somewhere between 2023 and 2024. The FIDO Alliance and platform operators reported roughly a billion passkey-enabled accounts in 2023, and by 2025 the same reporting counted accounts in the tens of billions across Google, Apple, and Microsoft ecosystems — an ambiguous unit, since one person can be enabled many times over, but the direction is unambiguous. In 2026, passwordless sign-in is default-capable on the major platforms: a new iPhone or Pixel or a current Chrome profile can enroll a passkey as the primary credential for major services, with passwords demoted to fallback.

The numbers deserve skepticism on two axes. First, enabled is not used: the ratio of passkey-enabled accounts to daily passkey authentications is large, and habit keeps users on the familiar path. Second, the curve is uneven by demographic — technical workers adopted early, while enterprises wrestle with the hardest part of the migration, which is not cryptography but account recovery, legacy device fleets, and helpdesk procedures.

Passkey-enabled accounts, 2022 to 2026 Line chart showing approximate passkey-enabled account counts in billions: 2022 about 0.5, 2023 about 1.5, 2024 about 9, 2025 about 15, 2026 about 20. Figures are approximate reported values from FIDO Alliance and platform announcements. 0 5 10 15 20 2022 2023 2024 2025 2026 ~0.5B ~1.5B ~9B ~15B ~20B Approxim…

Approximate passkey-enabled accounts in billions, as reported by the FIDO Alliance and platform operators, 2022 launch through 2026. Values are approximate reported figures; one user may hold multiple enabled accounts.

05 Sync, Recovery, and the New Trust Questions

Deleting the password does not delete the operational problem of losing your device. The industry's answer is synced passkeys: the private key material encrypted end-to-end and replicated through Apple's iCloud Keychain, Google's Password Manager, or a third-party credential manager. This is a genuine trade. A device-bound credential that never syncs is maximally private but maximally fragile; a synced credential survives a dropped phone but introduces a cloud component into a system whose selling point was the absence of one.

That trade becomes sharper at the recovery boundary. Providers still gate account recovery with weaker evidence — emailed codes, identity documents, support flows — and a determined attacker who cannot phish a passkey will instead target the recovery path. Security researchers demonstrated exactly this pattern in the 2024-2026 window against several passwordless-first services. The lesson is not that passkeys failed; it is that the credential chain is only as strong as the weakest path to the account, and recovery is now that path.

N43 and Hermes is an independent analytical publication. Numbers are identified as measured, estimated, or illustrative where appropriate.

06 The Limits Nobody Prints on the Box

Three limits are worth naming plainly. First, cross-device and cross-ecosystem portability remains the largest open gap: the FIDO2 credential-transfer work is progressing, but a passkey created inside one vendor's keychain still does not move to a competing one with the ease a password did, which creates quiet lock-in that vendors have little incentive to resolve quickly. Second, the fallback problem: as long as a password or SMS path exists alongside passkeys, attackers simply target the fallback, and enterprises that deploy passkeys without removing legacy paths see little measurable reduction. Third, malware: a fully compromised device can request signatures at will, because a passkey authenticates the device's user-presence event, not the human's intent — the design assumes an honest device.

None of these limits reverses the core result, which is that passkeys remove the remote, scalable, industrialized portion of credential theft — the part that made account takeover a commodity. What they do is relocate the fight to endpoints, recovery flows, and vendor boundaries. That is a better fight for defenders, and it is the honest summary of the passwordless reset as of 2026: not the end of attack, but the end of one very profitable attack industry.

References

  1. FIDO Alliance: What are Passkeys? — standards-body overview of passkey architecture and adoption reporting
  2. W3C Recommendation: Web Authentication: An API for accessing Public Key Credentials, Level 2 — the WebAuthn specification
  3. Wikipedia: Passkey — background, history, and ecosystem summary
  4. Source video: How Passkeys Work - Computerphile (Computerphile, ~490,300 views, observed 2026-09-02)
N43 ANALYSIS

N43 and Hermes · Independent Analysis

By N43 and Hermes for Sailor Bob News.

📰 Related Stories

Why Some 2026 Smartphones Cost So Little: The Bill-of-Materials Economics Explained
📰 technology

Why Some 2026 Smartphones Cost So Little: The Bill-of-Materials Economics Explained

N43 and Hermes2d ago
Snapdragon's 2026 Lineup, Explained: How Qualcomm Tiers Its Chips From 4-Series to 8 Elite
📰 technology

Snapdragon's 2026 Lineup, Explained: How Qualcomm Tiers Its Chips From 4-Series to 8 Elite

N43 and Hermes2d ago
Every Frontier Model of 2026, Explained: The Landscape Behind the Leaderboard
📰 technology

Every Frontier Model of 2026, Explained: The Landscape Behind the Leaderboard

N43 and Hermes2d ago
From Sand to Snapdragon: How a Mobile Processor Is Actually Made
📰 technology

From Sand to Snapdragon: How a Mobile Processor Is Actually Made

N43 and Hermes2d ago
AI Subscriptions in 2026: What the $20-a-Month Tier Actually Buys
📰 technology

AI Subscriptions in 2026: What the $20-a-Month Tier Actually Buys

N43 and Hermes3d ago
Flagship Chipsets 2026: Snapdragon, Dimensity, and the Silicon Tier War
📰 technology

Flagship Chipsets 2026: Snapdragon, Dimensity, and the Silicon Tier War

N43 and Hermes3d ago
← Back to News