agentic-identity 0.1.1

Cryptographic identity anchor for AI agents — persistent identity, signed actions, revocable trust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Identity management — creation, derivation, rotation.
//!
//! The identity module provides the core `IdentityAnchor` type
//! which is the root of an agent's cryptographic identity.

pub mod anchor;

pub use anchor::{
    Attestation, AttestationClaim, IdentityAnchor, IdentityDocument, IdentityId, KeyRotation,
    PublicKeyRotation, RotationReason,
};