Struct crypto::md5::Md5 [-] [+] [src]

pub struct Md5 {
    // some fields omitted
}

The MD5 Digest algorithm

Methods

impl Md5

fn new() -> Md5

Construct a new instance of the MD5 Digest.

Trait Implementations

impl Digest for Md5

fn input(&mut self, input: &[u8])

fn reset(&mut self)

fn result(&mut self, out: &mut [u8])

fn output_bits(&self) -> usize

fn block_size(&self) -> usize

fn output_bytes(&self) -> usize

fn input_str(&mut self, input: &str)

fn result_str(&mut self) -> String