Struct email_pass::Password

source ·
pub struct Password<State = Encrypt> { /* private fields */ }
Expand description

Safe-access password abstraction.

Implementations§

source§

impl Password

source

pub fn new(raw_password: &str) -> Password<Raw>

source

pub fn from_raw(raw_password: &str) -> Password<Raw>

Create a non encrypt password.

source

pub fn from_encrypt( encrypted_password: &str ) -> Result<Password<Encrypt>, PasswordError>

Create an encrypt password, check if password is really hashed.

source

pub fn verify(&self, raw_password: &Password<Raw>) -> Result<bool, BcryptError>

source

pub fn as_str(&self) -> &str

Extracts the inner value from Password<Encrypt>.

source§

impl Password<Raw>

source

pub fn check(self) -> Result<Self, PasswordError>

Check the password’s strong, use PasswordStrengthChecker with default values. If you want change this values, use Password<Raw>::custom_check.

source

pub fn custom_check( self, checker: PasswordStrengthChecker ) -> Result<Self, PasswordError>

Check the password’s strong

§Examples

Hard strong password example:

 use email_pass::{Password, PasswordStrengthChecker, PasswordStrength};

 let checker = PasswordStrengthChecker::new()
         .min_len(20)
         .strong(PasswordStrength::Hard);

 let password_err = Password::new("my.passphrase.0-9").custom_check(checker);
 assert!(password_err.is_err());

Low strong password example:

 use email_pass::{Password, PasswordStrengthChecker, PasswordStrength};

 let checker = PasswordStrengthChecker::new()
         .min_len(8)
         .strong(PasswordStrength::Low);

 let raw_password = Password::new("1234567azhc").custom_check(checker);
 assert!(raw_password.is_ok());
source

pub fn to_encrypt(self, cost: u32) -> Result<Password<Encrypt>, BcryptError>

Transforms Password<Raw> to Password<Encrypt>, encrypting the inner value based in a cost value. This method not checks the password’s strong.

source

pub fn to_encrypt_default(self) -> Result<Password<Encrypt>, BcryptError>

Transforms Password<Raw> to Password<Encrypt>, just encrypting the inner value. This method not checks the password’s strong.

source

pub fn to_encrypt_with_cost( self, cost: u32 ) -> Result<Password<Encrypt>, BcryptError>

Transforms Password<Raw> to Password<Encrypt>, encrypting the inner value based in a cost value. This method not checks the password’s strong.

Trait Implementations§

source§

impl AsRef<str> for Password<Encrypt>

source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<State: Clone> Clone for Password<State>

source§

fn clone(&self) -> Password<State>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Password<Encrypt>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Password<Encrypt>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<State: PartialEq> PartialEq for Password<State>

source§

fn eq(&self, other: &Password<State>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<State: Eq> Eq for Password<State>

source§

impl<State> StructuralPartialEq for Password<State>

Auto Trait Implementations§

§

impl<State> Freeze for Password<State>

§

impl<State> RefUnwindSafe for Password<State>
where State: RefUnwindSafe,

§

impl<State> Send for Password<State>
where State: Send,

§

impl<State> Sync for Password<State>
where State: Sync,

§

impl<State> Unpin for Password<State>
where State: Unpin,

§

impl<State> UnwindSafe for Password<State>
where State: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.