aboutsummaryrefslogtreecommitdiff
path: root/passgen.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-12-02Less syscalls the better? Call getrandom() every generationNicholas Tay1-6/+3
Seems to hang every few executions if we getrandom one big chunk. Probably not enough entropy?
2021-12-02Add better RNG for LinuxNicholas Tay1-3/+19
2021-12-01Fix VLA for password charsNicholas Tay1-1/+2
I wasn't very clued in on how this works, and I thought it'd initialise properly, but clearly not. Need to include space for the null terminator and explicitly set it.
2021-12-01Add config file, refactor classes to be cleaner with macrosNicholas Tay1-20/+8
2021-12-01Missing string.h importNicholas Tay1-0/+1
2021-12-01Take a single argument as a grammarNicholas Tay1-1/+6
2021-12-01Take in triplet/specials/numbers argumentsNicholas Tay1-2/+32
2021-11-30Adjust seeding and compiler errorsNicholas Tay1-9/+6