pep 0.4.0

Policy Enforcement Point - OIDC authentication and authorization library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! 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 use types::*;
pub use client::*;
pub use resource_server::*;