Crate passg

Source
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§

charsets
This module configures the collating sequences (aka charsets) that are available for generating a pseudo-random password.
errors
This module defines the error that might occur while using passg.
generator
This module defines the type used to configure and generate passwords
prelude
A prelude you can use to easily get started