Skip to main content

microsandbox_network/secrets/
mod.rs

1//! Placeholder-based secret injection for TLS-intercepted connections.
2//!
3//! Secrets use placeholder protection: the sandbox receives a placeholder
4//! string (e.g. `$MSB_a8f3b2c1`), never the real value. The TLS proxy
5//! substitutes the real value only when the request goes to an allowed host.
6
7pub mod config;
8pub mod handler;