aex-core 1.2.0-alpha.1

Core types, traits, and errors for Agent Exchange Protocol (AEX).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Core types, traits, and errors for Agent Exchange Protocol (AEX).
//!
//! This crate defines the shared vocabulary used across the control plane,
//! SDKs, and identity/scanner/policy/audit providers. It intentionally has
//! no crypto or IO dependencies — those live in per-concern crates that
//! implement the traits defined here.

pub mod error;
pub mod identity;
pub mod signature;
pub mod types;
pub mod wire;

pub use error::{Error, Result};
pub use identity::{IdentityProvider, TrustMetadata};
pub use signature::{Signature, SignatureAlgorithm};
pub use types::{AgentId, IdScheme, TransferId};