Blakeout
Memory hard hashing algorithm based on Blake2s
Usage
Blakeout can be used in the following way:
use Digest;
use Blakeout;
// create a Blakeout object, it will hash your bytes for you
let mut hasher = default;
// write input message
hasher.input;
// read hash digest and consume hasher
let res = hasher.result_str;
assert_eq!;