Struct sasl::secret::Pbkdf2Sha1
source · pub struct Pbkdf2Sha1 {
pub salt: Vec<u8>,
pub iterations: u32,
pub digest: Vec<u8>,
}
Fields§
§salt: Vec<u8>
§iterations: u32
§digest: Vec<u8>
Implementations§
source§impl Pbkdf2Sha1
impl Pbkdf2Sha1
pub fn derive( password: &str, salt: &[u8], iterations: u32 ) -> Result<Pbkdf2Sha1, DeriveError>
Trait Implementations§
source§impl Clone for Pbkdf2Sha1
impl Clone for Pbkdf2Sha1
source§fn clone(&self) -> Pbkdf2Sha1
fn clone(&self) -> Pbkdf2Sha1
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for Pbkdf2Sha1
impl Debug for Pbkdf2Sha1
source§impl PartialEq for Pbkdf2Sha1
impl PartialEq for Pbkdf2Sha1
source§fn eq(&self, other: &Pbkdf2Sha1) -> bool
fn eq(&self, other: &Pbkdf2Sha1) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Pbkdf2Secret for Pbkdf2Sha1
impl Pbkdf2Secret for Pbkdf2Sha1
impl Eq for Pbkdf2Sha1
impl Secret for Pbkdf2Sha1
impl StructuralEq for Pbkdf2Sha1
impl StructuralPartialEq for Pbkdf2Sha1
Auto Trait Implementations§
impl RefUnwindSafe for Pbkdf2Sha1
impl Send for Pbkdf2Sha1
impl Sync for Pbkdf2Sha1
impl Unpin for Pbkdf2Sha1
impl UnwindSafe for Pbkdf2Sha1
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