actix_web_security/authentication/scheme/bearer/mod.rs
1//! The bearer scheme module offers an implementation of JWT based OAuth2 authentication header extractor,
2//! authentication provider and user detail service.
3//! Additionally a JWK module is provided to load JWKs for token verification from the local file system
4//! or dynamically from a HTTP-Endpoint.
5
6pub mod jwk;
7pub mod jwt;