pub fn html_input_value_obfuscate(value: &str) -> StringExpand description
Generates HTML input value attribute obfuscation for XSS and injection testing.
Useful for red team XSS payload insertion and blue team input sanitization testing.
ยงExamples
use redstr::html_input_value_obfuscate;
let value = "user@example.com";
let result = html_input_value_obfuscate(value);
assert!(result.len() > 0);