| Crates.io | apple-password-gen |
| lib.rs | apple-password-gen |
| version | 0.1.1 |
| created_at | 2024-11-12 01:49:52.721005+00 |
| updated_at | 2025-02-15 01:26:11.451855+00 |
| description | Generate passwords in the format used by Apple's Strong Password Suggestion |
| homepage | |
| repository | https://github.com/codyps/password-gen |
| max_upload_size | |
| id | 1444446 |
| size | 12,392 |
Generate secure passwords using the same format used by apple passwords.
cargo install apple-password-gen
Then run:
apple-password-gen
In addition to the cmdline tool, you can also use the library in your own projects.
cargo add apple-password-gen
Then in your code:
fn main() {
let password = apple_password_gen::generate();
println!("{}", password);
}