Q1 2026: ~30% top-1000 sites support passkeys (FIDO Alliance Report). Apple + Google + Microsoft все ship cross-device sync (iCloud Keychain / Google Password Manager / Microsoft Authenticator). Early adopters: GitHub (2023), Google Workspace (2023), Microsoft 365 (2024), Amazon, PayPal, eBay. Conversion: sites, включившие passkeys в UX, регистрируют 50-70% users на passkey в течение 6 мес. Barrier — UX-онбординг и browser-picker.
Ниже: подробности, пример, связанные, FAQ.
// WebAuthn registration — simplified
const credential = await navigator.credentials.create({
publicKey: {
challenge: Uint8Array.from(atob(challengeB64), c => c.charCodeAt(0)),
rp: { name: 'Example', id: 'example.com' },
user: { id: userId, name: userEmail, displayName: userName },
pubKeyCredParams: [{ type: 'public-key', alg: -7 }, { type: 'public-key', alg: -257 }],
authenticatorSelection: { userVerification: 'preferred' }
}
});Нет на 2026. Лучшая практика — passkey as primary + password as fallback для recovery.
Sync providers (iCloud/Google/MS) восстанавливают passkey при sign-in на новом устройстве. Device-bound ключи (YubiKey) требуют backup-key.
Okta, Auth0, Entra ID — все ship WebAuthn/passkeys 2024-2025. Для IdP-intensive компаний — no-brainer.