pub enum HashFunc {
Sha1,
Sha224,
Sha256,
Sha384,
Sha512,
Md5,
Md2,
Other(String),
}Expand description
Secure Hash functions
See RFC 8122 Table 1
Variants§
Implementations§
Trait Implementations§
impl Eq for HashFunc
impl StructuralPartialEq for HashFunc
Auto Trait Implementations§
impl Freeze for HashFunc
impl RefUnwindSafe for HashFunc
impl Send for HashFunc
impl Sync for HashFunc
impl Unpin for HashFunc
impl UnsafeUnpin for HashFunc
impl UnwindSafe for HashFunc
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