async-oidc-jwt-validator 0.1.2

Asynchronous OIDC JWT validator with JWKS caching for Keycloak and other OIDC providers
Documentation
1
2
3
4
5
6
7
8
9
mod config;
mod validator;

// Re-export main types for user convenience
pub use config::OidcConfig;
pub use validator::OidcValidator;

// Re-export jsonwebtoken types that users will need
pub use jsonwebtoken::{Algorithm, Validation};