1 2 3 4 5 6
use random_encrypt::RandomEncrypt; fn main() { let encrypt = RandomEncrypt::new().encrypt(String::from("")); println!("{encrypt:?}"); }