//! Utils for SHAKE
use ;
use Shake256;
/// SHAKE-256 wrapper
/// * Input: `input` string and `length` of the desired output
/// * Output: an array of length `len`.
//
// # Example
// ```
// let result = shake256(&[1, 2, 3, 4, 5], 32);
// println!("{:?}", result);
// ```