adapter-auth: JWT, OIDC, password hashing

This commit is contained in:
2026-07-12 02:44:16 +02:00
parent 0fe80b545e
commit 72ef9b9e1b
7 changed files with 2184 additions and 31 deletions

View File

@@ -0,0 +1,17 @@
//! Auth adapter crate — JWT, OIDC, and password hashing.
pub mod password;
#[cfg(feature = "jwt")]
pub mod jwt;
#[cfg(feature = "oidc")]
pub mod oidc;
pub use password::PasswordAuthService;
#[cfg(feature = "jwt")]
pub use jwt::{JwtClaims, JwtConfig, JwtError, JwtValidator};
#[cfg(feature = "oidc")]
pub use oidc::{OidcService, OidcState, OidcUser};