elif-auth 0.1.0

Authentication and authorization system for elif.rs framework - JWT, sessions, password hashing, and middleware
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Authentication providers implementations
//! 
//! This module contains implementations of different authentication providers:
//! - JWT (JSON Web Token) provider
//! - Session-based provider
//! - MFA (Multi-Factor Authentication) provider

pub mod jwt;
pub mod session;
pub mod mfa;

// Re-exports for convenience
pub use jwt::*;
pub use session::*;
pub use mfa::*;