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