auth-framework 0.5.0-rc19

A comprehensive, production-ready authentication and authorization framework for Rust applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! JWT (JSON Web Token) Implementation Module
//!
//! This module contains JWT-related functionality including:
//! - JWT Access Token handling
//! - JWT best practices implementation
//! - Token introspection
//! - Private Key JWT authentication

pub mod jwt_access_tokens;
pub mod jwt_best_practices;
pub mod jwt_introspection;
pub mod private_key_jwt;

// Re-export commonly used types
pub use jwt_access_tokens::*;
pub use jwt_best_practices::*;
pub use jwt_introspection::*;
pub use private_key_jwt::*;