pep 0.5.1

Policy Enforcement Point - OIDC authentication and authorization library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! OIDC authentication and authorization functionality
//!
//! This module provides both OIDC client functionality for web applications
//! and resource server protection for APIs.

pub mod types;
pub mod client;
pub mod resource_server;
pub mod pkce_cookie;

pub use types::*;
pub use client::*;
pub use resource_server::*;
pub use pkce_cookie::{PkceCookieManager, PkceSession};