A simple bidrectional hash implementation based on this
[Psuedo Encrypt](https://wiki.postgresql.org/wiki/Pseudo_encrypt) algorithm, which is a Feistel network, with support up
to 128 bit numbers.
```shell
cargo add bidirectional_hash
```
```rust
use bidirectional_hash::hash;
fn main() {
}
```