Archived
1
0
Fork 0
small password generator utility
This repository has been archived on 2026-03-18. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
  • C 98.3%
  • Makefile 1.7%
Find a file
2022-12-13 21:55:20 -08:00
.github Delete FUNDING.yml 2022-12-04 14:24:26 -08:00
src Added help option 2021-07-29 22:03:27 -07:00
.gitignore Initial working version 2021-07-29 21:47:45 -07:00
LICENSE Initial commit 2021-07-28 02:49:26 -07:00
Makefile Initial working version 2021-07-29 21:47:45 -07:00
README.md Update README.md 2022-12-13 21:55:20 -08:00

passgen
a cli password generator
Made by Devon with love.

Usage

About

passgen is meant to be a simple but useful password generator that is easily deployable onto machines without many dependencies.

Usage

Usage:
./passgen [h/uu/un/us/l/s/o]
  --use_nums, -use_nums, -un Use numbers in the generator (on by default)
  --use_upper, -use_upper, -uu Use uppercase in the generator (on by default)
  --use_symbols, -use_symbols, -us Use symbols in the generator (on by default)
  --length=x, -length=x, -len=x Generate specific length password (16 by default)
  --seed=x, -seed=x, -s=x Use specific seed
  --output=x, -out=x, -o=x Output to specific location
  --default, -default, -d Use defaults 
  --help, -help, -h Output this help info

Building

passgen currently just uses a makefile to compile. You can also just substitute it out for your favorite compiler call using just the main.c file in the src/ directory.

Otherwise it's as easy just using:

make

and you'll have a passgen executable.