Crates.io | my_encryption_lib |
lib.rs | my_encryption_lib |
version | 0.1.0 |
source | src |
created_at | 2023-12-31 17:00:37.131044 |
updated_at | 2023-12-31 17:00:37.131044 |
description | A library for various encryption and decryption algorithms. |
homepage | |
repository | https://github.com/0xenj/my_encryption_lib |
max_upload_size | |
id | 1084913 |
size | 33,079 |
My Encryption Library is a Rust crate that provides various encryption and decryption algorithms. It's designed to be easy to use, yet flexible enough to handle a range of encryption needs.
Add this to your Cargo.toml
:
[dependencies]
my_encryption_lib = "0.1.0"
Here's a quick example to get you started:
use my_encryption_lib::mel_presets;
fn main() {
let encrypted = mel_presets::mel_5("Hello, world!", true).unwrap();
let decrypted = mel_presets::mel_5(&encrypted, false).unwrap();
println!("Encrypted: {}", encrypted);
println!("Decrypted: {}", decrypted);
}
Replace mel_5
with any other function from the library to use a different encryption algorithm.
git checkout -b feature-branch
).git commit -am 'Add some feature'
).git push origin feature-branch
).This project is licensed under MIT license.
For any queries, feel free to reach out on GitHub.