Cipher Blend is a Rust library for simple Caesar cipher encryption and decryption.
- Encrypt messages using the Caesar cipher algorithm.
- Decrypt messages using the Caesar cipher algorithm.
Add the following line to your Cargo.toml
file:
[dependencies]
cipher_blend = "0.1.0"
use cipher_blend::{encrypt, decrypt};
fn main() {
let original_message = "Hello, Rust!";
let shift = 3;
// Encrypt
let encrypted_message = encrypt(original_message, shift);
println!("Encrypted: {}", encrypted_message);
// Decrypt
let decrypted_message = decrypt(&encrypted_message, shift);
println!("Decrypted: {}", decrypted_message);
}
If you find any issues or have suggestions for improvement, feel free to open an issue or submit a pull request.
This crate is distributed under the terms of the MIT License.