simple_hider

Crates.iosimple_hider
lib.rssimple_hider
version0.1.0
sourcesrc
created_at2023-01-07 17:34:18.371662
updated_at2023-01-07 17:34:18.371662
descriptionA crate for hiding and unhiding text with a salt value
homepage
repository
max_upload_size
id753160
size4,612
Federico (fede03billy)

documentation

README

hider-rust

Implementation of the hider/cypher algorithm by Jorge Blom in Rust, for educational purposes.

Examples

use simple_hider::{hide, unhide};

let text = "Hello";
let salt = "salt";
let encrypted = hide(salt, text);
let decrypted = unhide(salt, encrypted);

assert_eq!(text, decrypted);
Commit count: 0

cargo fmt