envseal 0.3.14

Write-only secret vault with process-level access control — post-agent secret management
1
2
3
4
5
6
7
8
9
10
//! Invariant: EnvironmentCompromised display is actionable.
use envseal::error::Error;

#[test]
fn environment_compromised_display() {
    let err = Error::EnvironmentCompromised("LD_PRELOAD detected".to_string());
    let msg = err.to_string();
    assert!(msg.contains("environment compromised"));
    assert!(msg.contains("LD_PRELOAD"));
}