pub type AsconXof128 = CoreWrapper<AsconXofCore>;Expand description
Ascon-XOF128
use ascon_hash::{AsconXof128, ExtendableOutput, Update, XofReader};
let mut xof = AsconXof128::default();
xof.update(b"some bytes");
let mut reader = xof.finalize_xof();
let mut dst = [0u8; 5];
reader.read(&mut dst);
assert_eq!(&dst, b"\x8c\x7d\xd1\x14\xa0");Aliased Typeยง
pub struct AsconXof128 { /* private fields */ }