pub struct Sha1Core { /* private fields */ }
Expand description
Core SHA-1 hasher state.
Trait Implementations§
source§impl AlgorithmName for Sha1Core
impl AlgorithmName for Sha1Core
source§fn write_alg_name(f: &mut Formatter<'_>) -> Result
fn write_alg_name(f: &mut Formatter<'_>) -> Result
Write algorithm name into
f
.source§impl BufferKindUser for Sha1Core
impl BufferKindUser for Sha1Core
§type BufferKind = Eager
type BufferKind = Eager
Block buffer kind over which type operates.
source§impl FixedOutputCore for Sha1Core
impl FixedOutputCore for Sha1Core
source§fn 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 moresource§impl UpdateCore for Sha1Core
impl UpdateCore for Sha1Core
source§fn update_blocks(&mut self, blocks: &[Block<Self>])
fn update_blocks(&mut self, blocks: &[Block<Self>])
Update state using the provided data blocks.