email_pass

Email and Password Type in Rust

Include:

Safe Email Constructor

rust fn main() { let correct_email = Email::new("example@example.com"); let incorrect_email = Email::new("example.com"); assert!(correct_email.is_ok()); assert!(incorrect_email.is_err()); }

Safe Passwords Constructor

```rust fn main() { let unsafepassword = Password::new("01234".tostring()); let safepassword = Password::new( "ThisIsAPassPhrase.An.Secure.Password".tostring(), );

assert!(unsafe_password.is_err());
assert!(safe_password.is_ok());

} ```

If the password is not encrypted, you can't access the inner value. ```rust fn main() { let mut password = Password::fromraw( "ThisIsAPassPhrase.An.Secure.Password".tostring(), ); asserteq!(password.tryto_str(), Err(Error::InexistentEncryptPassword));

password.encrypt_password().unwrap();
assert!(password.try_to_str().is_ok());

} The `Password` type implements the `Debug` trait securely. rust fn main(){ let safepassword = Password::fromraw("ThisIsAPassPhrase.An.Secure.Password".tostring()); let strpassword = format!("{:?}", &safepassword); assert!(!strpassword.contains("ThisIs")) } ```