light_openid/lib.rs
1//! # Light OpenID
2//!
3//! Basic implementation of OpenID protocol, with primitives and basic client.
4//!
5//! See https://gitea.communiquons.org/pierre/oidc-test-client for an example of usage of this library
6
7pub mod client;
8pub mod code_challenge;
9pub mod errors;
10pub mod nonce;
11pub mod primitives;
12pub mod token_refresher;
13
14pub(crate) mod utils {
15 pub(crate) mod crypt_utils;
16
17 pub(crate) mod http_client;
18
19 pub(crate) mod time_utils;
20}
21
22#[cfg(feature = "crypto-wrapper")]
23pub mod crypto_wrapper;
24
25#[cfg(feature = "crypto-wrapper")]
26pub mod basic_state_manager;