symbi-runtime 1.5.0

Agent Runtime System for the Symbi platform
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! AgentPin Integration Module
//!
//! Provides integration with AgentPin for domain-anchored cryptographic
//! identity verification of AI agents.

pub mod discovery;
pub mod key_store;
pub mod types;
pub mod verifier;

// Re-export main types and traits for convenience
pub use key_store::AgentPinKeyStore;
pub use types::{AgentPinConfig, AgentPinError, AgentVerificationResult, DiscoveryMode};
pub use verifier::{
    AgentPinVerifier, CachingResolver, DefaultAgentPinVerifier, MockAgentPinVerifier,
};