Crates.io | cipher_blend |
lib.rs | cipher_blend |
version | 0.1.1 |
source | src |
created_at | 2023-12-13 02:33:45.866877 |
updated_at | 2023-12-13 02:39:32.095602 |
description | A simple cipher blend |
homepage | |
repository | https://github.com/arferreira/cipher_blend |
max_upload_size | |
id | 1067603 |
size | 4,483 |
Cipher Blend is a Rust library for simple Caesar cipher encryption and decryption.
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.