//! Built-in authentication backend implementations.
//!
//! Each backend is gated behind a Cargo feature flag so applications
//! only compile the validation logic they actually use.
/// JWT authentication backend (Bearer token validation).
/// API key authentication backend (header or query parameter).
/// Static shared-secret Bearer token authentication backend.
/// Static shared-credential HTTP Basic authentication backend.