reinhardt-auth 0.1.2

Authentication and authorization system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! OAuth2/OIDC flow implementations

pub mod authorization;
pub mod pkce;
pub mod refresh;
pub mod state;
pub mod token_exchange;

pub use authorization::AuthorizationFlow;
pub use pkce::PkceFlow;
pub use refresh::RefreshFlow;
pub use state::{InMemoryStateStore, SessionStateStore, StateData, StateStore};
pub use token_exchange::TokenExchangeFlow;