Every time you click “Sign in with Google” or use your university credentials to access a third‑party learning platform, you are using federated identity. SP 800‑63C is the volume of the NIST Digital Identity Guidelines that defines how one system can securely assert a user’s identity to another system, completing the three‑part identity framework alongside proofing (63A) and authentication (63B) (National Institute of Standards and Technology [NIST], 2025a).

Document Background

SP 800‑63C is the “C” volume of the four‑part SP 800‑63 suite. While the A volume handles identity proofing (establishing who someone is) and the B volume covers authentication (verifying identity on each visit), the C volume addresses a different question: How does one system tell another system that a user has already been authenticated? (NIST, 2025a).

This question matters because modern organizations rarely operate in isolation. A university student might authenticate once with Northgate’s identity system and then access Canvas, library databases, Microsoft 365, and research computing resources without logging in again. Each of those services is a relying party that trusts an identity provider (the university’s authentication system) to vouch for the student’s identity. SP 800‑63C defines the rules for that trust relationship.

The Complete Suite

SP 800‑63A answers: “Who are you?” (identity proofing). SP 800‑63B answers: “Prove it is still you” (authentication). SP 800‑63C answers: “Tell that other system it is me” (federation). Together, these three volumes cover the entire lifecycle of digital identity, from initial enrollment to cross‑system trust.

What Is Federation?

Federation is a trust arrangement in which one organization (the identity provider, or IdP) authenticates a user and then communicates the result of that authentication to another organization (the relying party, or RP). The relying party accepts the identity provider’s assertion and grants access without requiring the user to authenticate again (NIST, 2025a, Section 4).

The Key Players

Identity Provider (IdP): The system that authenticates the user and creates assertions about their identity. In a university context, this is typically the campus single sign‑on (SSO) system. In a consumer context, it might be Google, Microsoft, or Apple.

Relying Party (RP): The application or service that needs to know who the user is but delegates the actual authentication to the IdP. Canvas, Brightspace, Zoom, and thousands of SaaS applications act as relying parties.

Subscriber (the user): The individual whose identity is being asserted. The subscriber authenticates at the IdP and is then seamlessly redirected to the relying party with proof of that authentication.

Why Federate?

  1. Reduced credential sprawl

    Without federation, every application needs its own username and password. Users end up managing dozens of credentials, which leads to password reuse, weak passwords, and forgotten accounts. Federation lets users authenticate once and access many services.

  2. Centralized security policy

    When authentication is centralized at the IdP, security policies (MFA requirements, password standards, session timeouts) are enforced in one place. Upgrading from single‑factor to multi‑factor authentication at the IdP immediately benefits every relying party.

  3. Faster deprovisioning

    When an employee leaves the organization or a student graduates, disabling their account at the IdP immediately revokes access to all federated services. Without federation, each application must be deprovisioned individually, and missed accounts become orphaned access points.

  4. Better user experience

    Single sign‑on eliminates repeated login prompts. Users authenticate once per session and move between services seamlessly. This reduces friction, support tickets, and the temptation to use weak passwords for convenience.

Assertions Explained

An assertion is a digitally signed statement made by an identity provider about a subscriber. It typically contains the subscriber’s identifier, the authentication method used, the time of authentication, and optionally, attributes like name, email address, or role. The relying party receives this assertion and uses it to make access control decisions (NIST, 2025a, Section 5).

Assertion Properties

SP 800‑63C identifies several critical properties that assertions must have to be trustworthy (NIST, 2025a, Section 5.1):

Integrity: The assertion must be protected against tampering. If an attacker can modify an assertion in transit (for example, changing the user’s role from “student” to “admin”), the entire federation model breaks down. Digital signatures provide integrity protection.

Confidentiality: Assertions often contain personally identifiable information (PII). They should be encrypted in transit and, in higher‑assurance scenarios, encrypted such that only the intended relying party can decrypt them.

Audience restriction: An assertion should specify which relying party it is intended for. This prevents a malicious relying party from capturing an assertion and replaying it at a different service. If an assertion meant for Canvas is presented to a banking application, the banking application should reject it.

Freshness: Assertions include timestamps and have limited validity periods. A stale assertion (one that was issued hours or days ago) should be rejected because the subscriber’s authentication state may have changed since the assertion was issued.

Bearer vs. Holder‑of‑Key Assertions

SP 800‑63C distinguishes between two assertion binding models (NIST, 2025a, Section 5.2):

Bearer assertions can be used by anyone who possesses them, much like a movie ticket. If an attacker intercepts a bearer assertion, they can present it to the relying party and gain access. Bearer assertions are simpler to implement but rely entirely on transport‑layer security (TLS) to prevent interception.

Holder‑of‑key assertions are bound to a specific cryptographic key held by the subscriber. Even if an attacker intercepts the assertion, they cannot use it without also possessing the subscriber’s private key. This provides stronger protection but requires more complex implementation.

Analogy

A bearer assertion is like a house key: whoever holds it can open the door. A holder‑of‑key assertion is like a house key that only works when paired with your fingerprint: possessing the key alone is not enough. Higher FALs require stronger assertion binding to mitigate the risk of assertion theft.

The Three FALs

SP 800‑63C defines three Federation Assurance Levels (FALs) that describe the strength of the federation transaction. Higher FALs require stronger protections against assertion interception, modification, and misuse (NIST, 2025a, Section 3).

Federation Assurance Levels defined in SP 800‑63C Rev. 4 (NIST, 2025a).
Level Assertion Type Protection Requirements Typical Use Case
FAL1 Bearer assertion Assertion is signed by the IdP and transmitted over an authenticated, encrypted channel (TLS). Audience restriction is required. Campus SSO to low‑risk applications, consumer “Sign in with” flows
FAL2 Bearer assertion with additional protections All FAL1 requirements, plus the assertion is encrypted to the relying party (not just the transport channel). This prevents the IdP or any intermediary from reading the assertion content after it is created. Enterprise SSO to applications containing sensitive data, healthcare portals
FAL3 Holder‑of‑key assertion All FAL2 requirements, plus the assertion is bound to a cryptographic key held by the subscriber. The relying party verifies both the assertion and the subscriber’s proof of key possession. Federal high‑value assets, financial systems, critical infrastructure control planes

The progression from FAL1 to FAL3 reflects increasing defense‑in‑depth. At FAL1, you trust the transport layer to protect the assertion. At FAL2, you add encryption so the assertion is protected even if the transport is compromised. At FAL3, you bind the assertion to the subscriber so that even a stolen, decrypted assertion is useless without the subscriber’s key.

Rev. 4 Changes

Rev. 4 strengthens the requirements at each FAL compared to Rev. 3. It places greater emphasis on assertion encryption (not just transport encryption), tightens the requirements for audience restriction and assertion lifetime, and aligns the FAL definitions more closely with modern federation protocols like OpenID Connect. It also requires IdPs to support subscriber‑initiated logout so that ending a session at the IdP propagates to all relying parties.

SAML vs. OpenID Connect

SP 800‑63C is protocol‑neutral: it describes requirements that any federation protocol must meet, rather than mandating a specific technology. However, two protocols dominate the federation landscape, and understanding them at a conceptual level is essential for applying SP 800‑63C in practice (NIST, 2025a, Section 7).

SAML 2.0 (Security Assertion Markup Language)

SAML is an XML‑based standard that emerged in the early 2000s and became the backbone of enterprise SSO. In a SAML flow, the identity provider generates an XML document called a SAML assertion, digitally signs it, and delivers it to the relying party (called a “service provider” in SAML terminology) via the user’s browser. SAML is mature, widely deployed in higher education (through InCommon and eduGAIN federations) and government, and well‑understood by enterprise security teams.

OpenID Connect (OIDC)

OpenID Connect is a modern identity layer built on top of OAuth 2.0. Instead of XML, it uses JSON Web Tokens (JWTs) as assertions (called “ID tokens” in OIDC terminology). OIDC was designed for the web and mobile era: it is simpler to implement than SAML, works naturally with REST APIs and single‑page applications, and is the protocol behind every “Sign in with Google/Apple/Microsoft” button you encounter online.

Conceptual comparison of SAML 2.0 and OpenID Connect.
Feature SAML 2.0 OpenID Connect
Data format XML JSON (JWT)
Assertion type SAML Assertion ID Token (JWT)
Transport Browser redirects (HTTP POST or Redirect bindings) Browser redirects and direct back‑channel calls
Complexity Higher (XML signatures, complex metadata) Lower (JSON‑based, simpler configuration)
Primary domain Enterprise and government SSO, higher education Consumer identity, mobile apps, modern web applications
Built on Standalone standard (OASIS) OAuth 2.0 authorization framework (IETF)

Both protocols can meet the requirements of any FAL when properly implemented. SAML’s XML signatures naturally provide assertion integrity, and SAML supports encrypted assertions for FAL2. OpenID Connect achieves the same through signed and encrypted JWTs. The choice between them is typically driven by the existing infrastructure and the type of applications being integrated, not by the FAL requirements themselves.

Classroom Connection

When you use your Northgate Career Account to log into Canvas, Brightspace, or library resources, you are using SAML‑based federation through the InCommon trust framework. When you click “Sign in with Google” on a consumer website, you are using OpenID Connect. Both are implementations of the principles described in SP 800‑63C, just using different protocols.

Relationship to 63A and 63B

The three volumes of SP 800‑63 form a complete identity system. Each volume addresses a different stage, and the assurance levels from each volume combine to define the overall trust posture of the system (NIST, 2025a; NIST, 2025b; NIST, 2025c).

How the Levels Work Together

An organization selects an IAL (from 63A), an AAL (from 63B), and a FAL (from 63C) based on its risk assessment. The selected levels do not have to be the same, but they must be coherent. A system that requires IAL3 proofing and AAL3 authentication but uses FAL1 federation would have a weak link in the chain: all the rigor of identity proofing and authentication could be undermined by a poorly protected assertion.

How IAL, AAL, and FAL combine in real‑world scenarios.
Scenario IAL AAL FAL Rationale
Public library catalog IAL1 AAL1 FAL1 Low risk across all dimensions; basic protection is sufficient.
University student services IAL2 AAL2 FAL1 Students are proofed at enrollment and use MFA. Campus SSO over TLS is adequate for federation.
Federal benefits portal IAL2 AAL2 FAL2 Sensitive personal data requires encrypted assertions beyond transport‑layer protection.
Intelligence community system IAL3 AAL3 FAL3 Maximum assurance required: in‑person proofing, hardware‑bound authentication, and holder‑of‑key assertions.

The Trust Chain Revisited

Federation adds a critical dimension to the identity trust chain. When a relying party accepts an assertion from an identity provider, it is trusting not only that the IdP authenticated the user correctly (AAL) but also that the IdP proofed the user correctly (IAL) and that the assertion itself was transmitted securely (FAL). A compromise at any point in this chain can propagate across the entire federation.

This is why SP 800‑63C requires relying parties to establish trust agreements with identity providers, verify that the IdP meets the required IAL and AAL, and monitor for signs of compromise. Federation is not just a technical plumbing problem; it is a trust management problem that requires ongoing governance.

Key Takeaway

SP 800‑63A, 63B, and 63C are not three independent documents. They are three chapters of a single story about digital identity. Proofing establishes who you are, authentication confirms it is still you, and federation lets that confirmation travel across organizational boundaries. A security professional who understands only one volume is working with an incomplete picture.

Citing This Document (APA 7)

SP 800‑63C‑4 follows the same APA 7 citation pattern as the other volumes in the suite. When citing multiple volumes in the same paper, use letter suffixes in the year to disambiguate (e.g., 2025a, 2025b, 2025c).

Format Demonstration
Reference list entry
National Institute of Standards and Technology. (2025). Digital identity guidelines: Federation and assertions (NIST Special Publication 800‑63C‑4). U.S. Department of Commerce. https://doi.org/10.6028/NIST.SP.800‑63c‑4
First in‑text citation (introduces the abbreviation)
(National Institute of Standards and Technology [NIST], 2025)
Subsequent in‑text citations
(NIST, 2025)
Citation referencing a specific section
(NIST, 2025, Section 5.1)
Narrative citation
The National Institute of Standards and Technology (NIST, 2025) defines three Federation Assurance Levels for securing identity assertions between organizations.

When all three volumes appear in the same reference list, assign year suffixes alphabetically by title. For example: 63A as 2025a (authentication comes after assertions alphabetically, but assign based on your reference list order). Always check your reference list to ensure each entry is uniquely identifiable.

References

  1. National Institute of Standards and Technology. (2025a). Digital identity guidelines: Federation and assertions (NIST Special Publication 800‑63C‑4). U.S. Department of Commerce. https://doi.org/10.6028/NIST.SP.800‑63c‑4
  2. National Institute of Standards and Technology. (2025b). Digital identity guidelines: Identity proofing and enrollment (NIST Special Publication 800‑63A‑4). U.S. Department of Commerce. https://doi.org/10.6028/NIST.SP.800‑63a‑4
  3. National Institute of Standards and Technology. (2025c). Digital identity guidelines: Authentication and authenticator management (NIST Special Publication 800‑63B‑4). U.S. Department of Commerce. https://doi.org/10.6028/NIST.SP.800‑63b‑4
  4. National Institute of Standards and Technology. (2025d). Digital identity guidelines (NIST Special Publication 800‑63‑4). U.S. Department of Commerce. https://pages.nist.gov/800‑63‑4/