pub enum Algorithm {
Sha1,
}Expand description
Hash algorithm used to derive OTPs.
Currently only SHA-1 is supported; SHA-256 / SHA-512 are reserved for a future release. (The otpauth URI standard supports all three.)
Variants§
Sha1
SHA-1 — the RFC 6238 baseline and what every authenticator app supports.
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 UnsafeUnpin 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