Struct md4::Md4
[−]
[src]
pub struct Md4 { /* fields omitted */ }The MD4 hasher
Trait Implementations
impl Copy for Md4[src]
impl Clone for Md4[src]
fn clone(&self) -> Md4
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Default for Md4[src]
impl BlockInput for Md4[src]
type BlockSize = U64
impl Input for Md4[src]
fn process(&mut self, input: &[u8])
Digest input data. This method can be called repeatedly for use with streaming messages. Read more
impl FixedOutput for Md4[src]
type OutputSize = U16
fn fixed_result(self) -> GenericArray<u8, Self::OutputSize>
Retrieve the digest result. This method consumes digest instance.