kavach 0.22.3

Sandbox execution framework — backend abstraction, strength scoring, policy engine, credential proxy, and audit hooks
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Output scanning and externalization gate.
//!
//! Scans sandbox output for secrets, credentials, and sensitive data
//! before allowing it to leave the sandbox boundary.

pub mod gate;
pub mod secrets;
pub mod types;

pub use gate::ExternalizationGate;
pub use types::{ExternalizationPolicy, ScanFinding, ScanResult, ScanVerdict, Severity};