vaultkey 0.1.1

A secure and customizable password generator library for Rust, designed to create strong, random passwords with various configuration options.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use vaultkey::PasswordBuilder;

fn main() {
	for i in 0..10 {
		let password = PasswordBuilder::default()
			.length(50)
			.with_uppercase(true)
			.min_digits(2)
			.min_specials(2)
			.avoid_ambiguous(true)
			.build()
			.unwrap();

		println!("Generated password {}: {}", i + 1, password);
	}
}