Struct octavo_digest::md5::Md5  
                   
                       [−]
                   
               [src]
pub struct Md5 {
    // some fields omitted
}MD5 implementation
For more details check module docs
Trait Implementations
impl Clone for Md5[src]
fn clone(&self) -> Md5
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 Md5[src]
impl Digest for Md5[src]
type OutputBits = U128
Output size in bits
type OutputBytes = U16
Output size in bytes
type BlockSize = U64
Block size in bytes
fn update<T>(&mut self, input: T) where T: AsRef<[u8]>
Update digest with data.
fn result<T: AsMut<[u8]>>(self, out: T)
Write resulting hash into output. Read more
fn output_bits() -> usize
Output size in bits
fn output_bytes() -> usize
Output size in bytes
fn block_size() -> usize
Block size in bytes