pub enum Algorithm {
SHA256,
SHA384,
SHA512,
}Expand description
Selects the hash algorithm to use in PBKDF2.
Variants§
SHA256
SHA2-256.
This is the algorithm used by the canonical LessPass implementation.
SHA384
SHA2-384.
Note: Using this algorithm makes the generated passwords different from every other LessPass implementation.
SHA512
SHA2-512.
Note: Using this algorithm makes the generated passwords different from every other LessPass implementation.
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