salt

Function salt 

Source
pub fn salt<T>(input: T, salt: T) -> String
where T: AsRef<[u8]>,
Expand description

Generate md5 string with salt

§Example

use light_tool::md5;
println!("md5 string with salt: {}", md5::salt("123", "456"))