Definition
Common term for the user-facing authentication interaction — entering credentials at a sign-in form. Modern patterns: passwordless (FIDO2, passkeys), SSO-redirect (no credential entry on the application), magic links, QR code login. UX-critical: friction in login is a major cause of customer abandonment (40-60% drop-off in CIAM).
- Application
- Standards: OIDC, SAML browser flows, WebAuthn, FIDO2 CTAP. Best practices: no password reset emails (use passkeys), short input fields, clear error messages without information disclosure, MFA enforcement via adaptive policies.
- Standards & regulations
-
- OASIS Secure QR Code Authentication Version 1.0 «This document describes the use of QR Codes and a mobile phone as a replacement for a username and password in user login authentication.»
- NIST SP 800-63B «This document, SP 800-63B, provides requirements to credential service providers (CSPs) for remote user authentication at each of three authentication assurance levels. It also provides guidelines for»
- NIST SP 800-63-3 «The guidelines cover identity proofing and authentication of users (such as employees, contractors, or private individuals) interacting with government information systems over open networks.»
- W3C Web Authentication: An API for accessing Public Key Credentials Level 2 «This specification defines an API enabling the creation and use of strong, attested, scoped, public key-based credentials by web applications, for the purpose of strongly authenticating users.»
Related terms
-
Multi-factor Authentication (MFA)
Authentication requiring two or more independent factors from different categories: knowledge (password), possession (ph …
-
Authentication (AuthN)
Process of verifying that a principal is who they claim to be. Three classic factors: knowledge (password, PIN), possess …
-
Credential
Data presented to authenticate or authorize — password, token, certificate, biometric, API key. NIST SP 800-63 distingui …
-
Kerberos
Network authentication protocol developed at MIT (Kerberos v5: IETF RFC 4120, 2005) using symmetric-key cryptography and …
-
Single Sign-On (SSO)
Authentication mechanism allowing users to access multiple applications with one login. Federated SSO (SAML, OIDC) — IdP …
-
User Session
Temporal context maintained between authentication and logout — represents a user's authenticated state across multiple …