aegis-delegate 0.2.0

AEGIS delegation and authority model โ€” delegation trees, session keys, scope constraints
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// AEGIS Delegate โ€” Delegation & Authority Model
//
// Reference: AEGIS Specification v1.0.0 ยง9

pub mod delegation_store;
pub mod proof;
pub mod revocation;
pub mod scope;
pub mod session_key;
pub mod store;
pub mod tree;

pub use delegation_store::{DelegationStore, InMemoryDelegationStore};
pub use store::{InMemoryRevocationStore, RevocationStore};