Skip to content

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

License

Notifications You must be signed in to change notification settings

fede03billy/hider-rust

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages