aegis_delegate/lib.rs
1// AEGIS Delegate — Delegation & Authority Model
2//
3// Reference: AEGIS Specification v1.0.0 §9
4
5pub mod delegation_store;
6pub mod proof;
7pub mod revocation;
8pub mod scope;
9pub mod session_key;
10pub mod store;
11pub mod tree;
12
13pub use delegation_store::{DelegationStore, InMemoryDelegationStore};
14pub use store::{InMemoryRevocationStore, RevocationStore};