https://github.com/matteopolak/password
A simple password generator.
https://github.com/matteopolak/password
cryptography cybersecurity generator password
Last synced: about 1 month ago
JSON representation
A simple password generator.
- Host: GitHub
- URL: https://github.com/matteopolak/password
- Owner: matteopolak
- License: mit
- Created: 2022-09-21T21:37:28.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-20T23:19:51.000Z (over 2 years ago)
- Last Synced: 2025-02-16T18:46:37.994Z (4 months ago)
- Topics: cryptography, cybersecurity, generator, password
- Language: Rust
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Password 🔑


[](https://opensource.org/licenses/MIT)
[](https://www.rust-lang.org/tools/install)A lightweight and featureful password generator.
```powershell
Usage: password [OPTIONS]
Options:
-a, --all Whether to use every option
-c, --chars List of characters to use in addition to other options
-d, --digits Whether to use digits
-l, --length Length of the password [default: 12]
-o, --lower Whether to use lowercase letters
-n, --num Number of passwords to generate [default: 1]
-s, --special Whether to use special characters
-u, --upper Whether to use uppercase letters
-h, --help Print help information
-V, --version Print version information
```## Install
See the [Rust install guide](https://www.rust-lang.org/tools/install) for [Rust nightly](https://doc.rust-lang.org/book/appendix-07-nightly-rust.html),
to [build from source with cargo](https://doc.rust-lang.org/cargo/commands/cargo-build.html), and to [run the unit tests](https://doc.rust-lang.org/cargo/commands/cargo-test.html).```bash
cargo +nightly build --release
```### Pre-built Binaries
Binaries are released on major releases for Windows platforms and can be located [in the releases tab](https://github.com/matteopolak/baerscript/releases).
## License
[MIT](./LICENSE)