Crate passg[−][src]
Expand description
This library provides a convenient way to generate pseudorandom passwords according to some given constraints.
Example
use passg::prelude::*;
let generator = GeneratorBuilder::default().build();
let password = generator.generate();
Modules
This module configures the collating sequences (aka charsets) that are available for generating a pseudo-random password.
This module defines the error that might occur while using passg.
This module defines the type used to configure and generate passwords
A prelude you can use to easily get started