pub fn html_form_field_obfuscate(field: &str) -> StringExpand description
Generates HTML form field name obfuscation for form bypass testing.
Useful for red team form field manipulation and blue team validation testing.
ยงExamples
use redstr::html_form_field_obfuscate;
let field = "username";
let result = html_form_field_obfuscate(field);
assert!(result.len() > 0);