eidetica 0.2.0

Decentralized DB. Remember Everything. Everywhere. All At Once.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Authentication validation for Eidetica
//!
//! This module provides validation logic for authentication information,
//! including key resolution, permission checking, and signature verification.

pub mod delegation;
pub mod entry;
pub mod permissions;
pub mod resolver;

#[cfg(test)]
mod tests;

// Re-export the main validator
pub use entry::AuthValidator;