Crate simple_hider

source ·
Expand description

This is the documentation for the simple_hider library.

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);

Functions