1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//! # SIGIL — Sovereign Identity-Gated Interaction Layer
//!
//! An open protocol for securing AI agent-to-tool interactions.
//!
//! SIGIL defines **traits** (interfaces) for:
//! - **Identity** — binding users to trust levels
//! - **Scanning** — detecting sensitive content before it enters agent context
//! - **Vault** — encrypted storage for intercepted secrets
//! - **Audit** — tamper-evident logging of all security events
//! - **Policy** — permission and rate-limiting enforcement
//!
//! Implement these traits with your own backends (regex, HSM, LDAP, etc.)
//! to add SIGIL-compliant security to any agent system.
//!
//! ## Quick Start
//!
//! ```rust,no_run
//! use sigil_protocol::{SensitivityScanner, AuditLogger, IdentityProvider, SecurityPolicy};
//! // Implement these traits with your own backends
//! ```
// Re-export core types
pub use ;
pub use ;
pub use ;
pub use SensitivityScanner;
pub use ;
pub use ;
// Re-export registry types (only when the `registry` feature is enabled)
pub use RemoteScanner;