passGen is a minimal command-line password generator written in Go.
It is designed to be simple, fast, and dependency-free.
- Full random password generation
- Custom character ranges
- Adjustable password length
- Clean string output
- Command-line interface (CLI)
Clone the repository and build from source:
git clone https://github.com/lnkssr/passGen.git
cd passGen
make install docker build -t passgen-builder .
docker create --name passgen-tmp passgen-builder
mkdir -p bin
docker cp passgen-tmp:/passGen ./bin/passGen
docker rm passgen-tmp