1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*!
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);
```
*/
pub use crate::password_generator::PasswordGenerator;
pub use crate::password_options::{CharSet, PasswordOptions};
pub mod dictionary;
pub mod password_generator;
pub mod password_options;