| 
				 | 
			||
|---|---|---|
| .gitea/workflows | ||
| tests | ||
| .gitignore | ||
| CMakeLists.txt | ||
| main.cpp | ||
| passwdgen.cpp | ||
| passwdgen.h | ||
| README.md | ||
passwdgen
a rudimentary random string password generator
For demo purposes only
Build
Bare Bones
mkdir build
g++ -o build/passwdgen ./passwdgen.cpp
From CMAKE
mkdir build
cd build
cmake ..
make 
Then, just copy the compiled binary to somewhere on your $PATH
Testing
To run the tests:
mkdir build
cd build
cmake ..
make
ctest
or directly:
./tests/passwdgen_test