use sponge_hash_aes256::{DEFAULT_DIGEST_SIZE, SpongeHash256};
#[cfg(feature = "logging")]
use simple_logger::SimpleLogger;
fn main() {
#[cfg(feature = "logging")]
SimpleLogger::new().init().unwrap();
let mut hash = SpongeHash256::new();
hash.update(b"The quick brown fox jumps over the lazy dog");
let digest = hash.digest::<DEFAULT_DIGEST_SIZE>();
println!("{:02X?}", &digest);
}