encrypted-images/examples/encrypt_novelty.rs

8 lines
232 B
Rust
Raw Normal View History

2023-10-24 04:54:02 +00:00
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);
}