Expand description

Secure password generation

Example

use password_gen::{PasswordOptions, PasswordGenerator};
use password_gen::password_options::CharSet;
let mut generator = PasswordGenerator::new();
let options = PasswordOptions::new(15, CharSet::Ascii);
let password = generator.generate_password(&options);

Re-exports

pub use crate::password_generator::PasswordGenerator;
pub use crate::password_options::CharSet;
pub use crate::password_options::PasswordOptions;

Modules