pub struct Shake256 { /* private fields */ }Expand description
Incremental SHAKE256 context for multi-part absorb and squeeze.
This is the primary hash interface used by the SLH-DSA hash
wrappers in super::hash. Data is absorbed in parts via
absorb, then the final output is obtained via
finalize (which consumes the context) or
squeeze (which allows multiple squeeze calls).
Implementations§
Auto Trait Implementations§
impl Freeze for Shake256
impl RefUnwindSafe for Shake256
impl Send for Shake256
impl Sync for Shake256
impl Unpin for Shake256
impl UnsafeUnpin for Shake256
impl UnwindSafe for Shake256
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more