idprova-core 0.1.1

Core library for IDProva — AI agent identity, delegation, and audit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Delegation Attestation Tokens (DATs).
//!
//! A DAT is a JWS (JSON Web Signature) that grants an agent scoped,
//! time-bounded permissions on behalf of a human controller.

pub mod chain;
pub mod constraints;
pub mod scope;
pub mod token;

pub use constraints::DatConstraints;
pub use scope::{Scope, ScopeSet};
pub use token::{Dat, DatClaims, DatHeader};