simple_hider 0.1.0

A crate for hiding and unhiding text with a salt value
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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);
```