pub enum Algorithm {
SHA1 = 0,
SHA224 = 2,
SHA256 = 3,
SHA384 = 12,
SHA512_224 = 13,
SHA512_256 = 14,
SHA512 = 15,
}
Expand description
Hash algorithm selection
Variants§
SHA1 = 0
SHA-1 Algorithm
SHA224 = 2
SHA-224 Algorithm
SHA256 = 3
SHA-256 Algorithm
SHA384 = 12
SHA-384 Algorithm
SHA512_224 = 13
SHA-512/224 Algorithm
SHA512_256 = 14
SHA-512/256 Algorithm
SHA512 = 15
SHA-256 Algorithm
Trait Implementations§
impl Copy for Algorithm
impl StructuralPartialEq for Algorithm
Auto Trait Implementations§
impl Freeze for Algorithm
impl RefUnwindSafe for Algorithm
impl Send for Algorithm
impl Sync for Algorithm
impl Unpin for Algorithm
impl UnwindSafe for Algorithm
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)