Crates.io | fpgcli |
lib.rs | fpgcli |
version | 0.0.1 |
source | src |
created_at | 2023-09-29 21:40:54.457206 |
updated_at | 2023-09-29 21:40:54.457206 |
description | CLI executable built on flowerypassgen. |
homepage | https://codeberg.org/tulpenkiste/flowerypassgen |
repository | https://codeberg.org/tulpenkiste/flowerypassgen |
max_upload_size | |
id | 987984 |
size | 73,013 |
A simple password generator library/executable written in Rust.
Example of using the library:
use flowerypassgen::{gen_password, genoptions::GenOptions};
fn example() {
const opts: GenOptions = GenOptions { length: (16), max_attempts: (128), use_symbols: (true), use_duplicate_chars: (false) };
println!("Password: {}", gen_password(&opts));
}
Example of using the cli:
./fpgcli --symbols=true --duplicates=false --length=32 --max-attempts=512