Authentication¶
Core Idea¶
The pattern of binding an asserted identity or origin to admissible evidence through a verification procedure that outputs a verdict — is this who or what it claims to be? — before trust, access, or weight is granted.
How would you explain it like I'm…
Are You Really You?
The Identity Check
Binding Claim to Evidence
Broad Use¶
- Information security: Passwords, hardware tokens, biometrics, and certificate chains bind a claimed identity to evidence.
- Law and finance: Signature verification, notarisation, and chain-of-custody for evidence.
- Art and collectibles: Provenance research, materials testing, and expert attestation bind a claimed origin to evidence.
- Medicine: Patient identification before a procedure and sample chain-of-custody.
- Journalism: Source authentication and the vouching of anonymous sources.
- Biology: Molecular self/non-self discrimination as a literal authentication mechanism.
Clarity¶
It separates three operations otherwise conflated: authentication (is this who it claims?), authorisation (what may it do?), and verification (does it conform to spec?) — so a failure in one cannot hide behind the others.
Manages Complexity¶
The trust-on-record contract performs the expensive binding once and amortises it over a window, shifting identity cost from per-interaction to per-session, with a verdict calibrated to the stakes.
Abstract Reasoning¶
It enables threat-model reasoning (which impostors does this stop?), trust-anchor reasoning (what would compromise the root?), and freshness reasoning (does it resist replay?).
Knowledge Transfer¶
- Security to medicine: A clinician reads a wristband-plus-verbal-confirmation as a two-channel procedure with a known anchor and freshness window.
- Security to art appraisal: An appraiser reads attestation-plus-testing-plus-provenance as a multi-channel procedure with a mixed anchor.
- Universally: The four-channel taxonomy (known, held, inherent, attested) is a sharp lens for single-channel thinness.
Example¶
A TLS handshake binds a server's claimed domain to evidence (a private key plus a CA-signed certificate), validated up to a root certificate, with a nonce resisting replay and a verdict licensing the session.
Relationships to Other Abstractions¶
Current abstraction Authentication Prime
Foundational — no parent edges in the catalog.
Children (8) — more specific cases that build on this
-
Multi-factor authentication Domain-specific is a kind of Authentication
The proposed strict upward parent is
prime:authentication. -
Passwordless authentication Domain-specific is a kind of Authentication
The proposed strict upward parent is
prime:authentication. -
Protocol for Carrying Authentication for Network Access (PANA) Domain-specific is a kind of Authentication
Authentication is the strict parent by composition and presupposition: PANA carries the identity-evidence exchange to the responsible verifier and maintains its session, but delegates method semantics to EAP and enforcement to another.
-
Quantum digital signature Domain-specific is a kind of Authentication
The proposed strict upward parent is
prime:authentication. -
Web of Trust Domain-specific is a kind of Authentication
Authentication is the strongest parent.
- Attestation Prime is a kind of Authentication
Attestation binds identity to evidence via a verifiable tamper-evident mark, which is exactly authentication's evidence-binding structure specialized to non-repudiable marks.
- Authentication Failure Domain-specific presupposes Authentication
Authentication failure presupposes an authentication procedure whose asserted-identity-to-evidence binding yields an incorrect acceptance verdict.
- Capability Separation Prime presupposes Authentication
Capability Separation presupposes an Authentication procedure that checks whether an artifact genuinely originates from the privileged issuer.
Not to Be Confused With¶
- Authentication is not Verification because authentication binds an identity or origin to evidence, whereas verification checks an artefact against its specification; conforming content from a forged identity passes one and fails the other.
- Authentication is not Access Control because authentication establishes who a party is, whereas access control decides what an established identity may do.
- Authentication is not Provenance because authentication is the procedure that weighs evidence and renders a verdict, whereas provenance is the recorded chain of origin that serves as one evidence channel.