pub struct InsecureMd5Digest(/* private fields */);
👎Deprecated: MD5 is considered insecure
Expand description
INSECURE: The digest output by the MD5 hash function.
§Security
MD5 is considered insecure, and should only be used for compatibility with legacy applications.
Trait Implementations§
Source§impl Debug for InsecureMd5Digest
impl Debug for InsecureMd5Digest
Source§impl Digest for InsecureMd5Digest
impl Digest for InsecureMd5Digest
Source§const DIGEST_LEN: usize = 16usize
const DIGEST_LEN: usize = 16usize
The length in bytes of this digest.
Source§fn from_bytes(bytes: Self::Bytes) -> Self
fn from_bytes(bytes: Self::Bytes) -> Self
Constructs a new digest from bytes.
Source§impl Display for InsecureMd5Digest
impl Display for InsecureMd5Digest
Source§impl PartialEq for InsecureMd5Digest
impl PartialEq for InsecureMd5Digest
impl Eq for InsecureMd5Digest
Auto Trait Implementations§
impl Freeze for InsecureMd5Digest
impl RefUnwindSafe for InsecureMd5Digest
impl Send for InsecureMd5Digest
impl Sync for InsecureMd5Digest
impl Unpin for InsecureMd5Digest
impl UnwindSafe for InsecureMd5Digest
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