pub struct Md5 { /* private fields */ }Implementations§
Trait Implementations§
Source§impl Digest for Md5
impl Digest for Md5
Source§const BLOCK_LEN: usize = 64
const BLOCK_LEN: usize = 64
Byte-oriented block size used by the Merkle-Damgard or sponge API. Read more
Source§const OUTPUT_LEN: usize = 16
const OUTPUT_LEN: usize = 16
Digest size in bytes.
Source§fn finalize_into(self, out: &mut [u8])
fn finalize_into(self, out: &mut [u8])
Finalize the hash into
out. Read moreSource§fn finalize_reset(&mut self, out: &mut [u8])
fn finalize_reset(&mut self, out: &mut [u8])
Finalize in place and wipe the internal state. Read more
Auto Trait Implementations§
impl Freeze for Md5
impl RefUnwindSafe for Md5
impl Send for Md5
impl Sync for Md5
impl Unpin for Md5
impl UnsafeUnpin for Md5
impl UnwindSafe for Md5
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more