/pgen

A very very basic password generator. Serves as a good introduction to the power of Rust.

Primary LanguageRust

pgen

A basic CLI tool to generate basic passwords.

Installation

Currently, you need to have the Rust toolchain to install it.

  1. Clone this repository
  2. Go to pgen directory
  3. cargo build --release
  4. The binary will be in ./target/build/

Usage

pgen [OPTIONS]

Supported options:

  • -l, --length
  • -m, --max-length

To-do

  • Add tests.
  • Add GitHub Actions CI.
  • Automate releases.