Skip to content

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

Stars

2 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages