Skip to main content

microsandbox_network/model/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;
8#[cfg(feature = "engine")]
9pub use crate::engine::secrets::handle;
10#[cfg(feature = "engine")]
11pub use crate::engine::secrets::handler;