eidetica/auth/validation/mod.rs
1//! Authentication validation for Eidetica
2//!
3//! This module provides validation logic for authentication information,
4//! including key resolution, permission checking, and signature verification.
5
6pub mod delegation;
7pub mod entry;
8pub mod permissions;
9pub mod resolver;
10
11#[cfg(test)]
12mod tests;
13
14// Re-export the main validator
15pub use entry::AuthValidator;