- What is SAML?
- Security Assertion Markup Language — enterprise SSO standard. Used by Okta, Azure AD, Google Workspace for logging users into apps via IdP-issued assertions.
- Is it still used?
- Widely — SAML is the default SSO protocol in enterprise IT. OIDC (OAuth 2.0's auth layer) is newer but SAML has entrenched support.
- What does the decoder show?
- Base64-decoded and XML-formatted SAML response: Assertion, Subject, Attributes, Conditions, AuthnStatement. Everything an IdP sends to an SP.
- Does it verify the signature?
- No — signature verification needs the IdP's public cert and is best done by the consuming service. The decoder shows structure; your SSO library validates.