rust_unique_pass 0.11.0

A CLI tool for generating a strong password.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod character_set;
pub mod generate_pass;
pub mod password_generation;
pub mod password_length;
pub mod reporting;

pub use generate_pass::{
    generate_password_flow, generate_password_flow_with_evaluator,
    generate_password_flow_with_min_score,
};
// `produce_secure_password` is deprecated since 0.11.0. The re-export is kept
// for source compatibility until the next breaking release.
#[allow(deprecated)]
pub use password_generation::{PasswordStrengthEvaluator, produce_secure_password};
pub use password_length::validate_password_length;
pub use reporting::{FlowReport, Warning};