//! `OpenID` Connect (OIDC) support for ID token validation and discovery.
//!
//! This module is gated behind the `oidc` feature flag.
//! It provides discovery document parsing, ID token validation,
//! and `UserInfo` response parsing.
//!
//! # Signature algorithms
//!
//! ID tokens can be validated against either a shared HMAC secret
//! ([`IdTokenValidator::validate`], `HS256` / `HS512`) or a provider's
//! published JWKS ([`IdTokenValidator::validate_jwks`], `RS256` / `RS512` /
//! `ES256` / `EdDSA`). The asymmetric path — the norm for public identity
//! providers like Google, Microsoft, and Okta — requires the `asym-jwt`
//! feature, which the `oidc` feature enables transitively. RSA is
//! verify-only: this crate validates RSA-signed tokens but never mints them.
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;