pub enum Algorithm {
HmacSha1,
HmacSha256,
HmacSha512,
}
Expand description
Algorithm supported for TOTP.
Variants§
HmacSha1
HMAC-based One-time Password Algorithm.
HmacSha256
HMAC-based One-time Password Algorithm.
HmacSha512
HMAC-based One-time Password Algorithm.
Trait Implementations§
impl Copy for Algorithm
impl Eq 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