pub type AsconXof = CoreWrapper<AsconXofCore>;Expand description
AsconXof
use ascon_hash::{AsconXof, ExtendableOutput, Update, XofReader};
let mut xof = AsconXof::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"\xc2\x19\x72\xfd\xe9");Aliased Typeยง
struct AsconXof { /* private fields */ }