feat(anti-forensics): implement incremental auto-vacuum, chunk shredding, and plausible deniability
This commit is contained in:
@@ -92,6 +92,14 @@ pub fn red(s: &str) -> String {
|
||||
}
|
||||
}
|
||||
|
||||
pub fn magenta(s: &str) -> String {
|
||||
if is_vt_enabled() {
|
||||
format!("\x1b[1;35m{s}\x1b[0m")
|
||||
} else {
|
||||
s.to_string()
|
||||
}
|
||||
}
|
||||
|
||||
/// Gibt einen formatierten Fortschrittsschritt aus: ` [1/4] 📦 Schrittbeschreibung...`
|
||||
pub fn step(num: u8, total: u8, icon: &str, msg: &str) {
|
||||
let tag = cyan(&format!("[{}/{}]", num, total));
|
||||
|
||||
Reference in New Issue
Block a user