Struct ascon_hash::AsconCore
source · [−]pub struct AsconCore { /* private fields */ }Expand description
Ascon hash implementation
Trait Implementations
sourceimpl AlgorithmName for AsconCore
impl AlgorithmName for AsconCore
sourcefn write_alg_name(f: &mut Formatter<'_>) -> Result
fn write_alg_name(f: &mut Formatter<'_>) -> Result
Write algorithm name into f.
sourceimpl BlockSizeUser for AsconCore
impl BlockSizeUser for AsconCore
sourceimpl BufferKindUser for AsconCore
impl BufferKindUser for AsconCore
type BufferKind = Eager
type BufferKind = Eager
Block buffer kind over which type operates.
sourceimpl FixedOutputCore for AsconCore
impl FixedOutputCore for AsconCore
sourcefn finalize_fixed_core(
&mut self,
buffer: &mut Buffer<Self>,
out: &mut Output<Self>
)
fn finalize_fixed_core(
&mut self,
buffer: &mut Buffer<Self>,
out: &mut Output<Self>
)
Finalize state using remaining data stored in the provided block buffer,
write result into provided array and leave self in a dirty state. Read more
sourceimpl OutputSizeUser for AsconCore
impl OutputSizeUser for AsconCore
sourceimpl UpdateCore for AsconCore
impl UpdateCore for AsconCore
sourcefn update_blocks(&mut self, blocks: &[Block<Self>])
fn update_blocks(&mut self, blocks: &[Block<Self>])
Update state using the provided data blocks.
impl HashMarker for AsconCore
Auto Trait Implementations
impl RefUnwindSafe for AsconCore
impl Send for AsconCore
impl Sync for AsconCore
impl Unpin for AsconCore
impl UnwindSafe for AsconCore
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more