encrypted-images/examples/encrypt_novelty.rs
2024-07-16 17:40:41 -06:00

8 lines
232 B
Rust

use encrypted_images::encryption::text::encrypts;
fn main() {
let plaintext = "This Is Plain Text";
let encrypted_text = encrypts(plaintext, None, None).unwrap();
println!("Encrypted text: {}", encrypted_text);
}