aboutsummaryrefslogtreecommitdiffstats
path: root/makepass.zsh (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-09-11Redid Go-versionDennis Eriksen1-1/+1
Go-version now matches zsh in functionality also removed rogue whitespace from makepass.zsh
2023-09-08Throw away $RANDOM numbers at the right placesDennis Eriksen1-4/+13
I got some suspiciously similar passwords and had to take a closer look to make sure we throw away $RANDOM at the right places. $RANDOM - from the zsh documentation: > The values of RANDOM form an intentionally-repeatable pseudo-random sequence; > subshells that reference RANDOM will result in identical pseudo-random values > unless the value of RANDOM is referenced or seeded in the parent shell in > between subshell invocations. I think it's fixed now.
2023-09-07Redid the perl-versionDennis Eriksen1-1/+1
and fixed a typo in zsh and readme
2023-09-07More fixes!Dennis Eriksen1-18/+15
Things are popping up with the zsh-version as I'm rewriting the perl-version. - Rename help-function - I wanted zero-padding of PRINTLEN. Added it now. - Change the way we set first and last character in randstring.
2023-09-07just reordering functionsDennis Eriksen1-155/+155
2023-09-07use the $MAX variableDennis Eriksen1-5/+7
2023-09-06WIP: Cleanup and standardization - Done?Dennis Eriksen1-88/+148
I think I'm getting there with this round. `makepass.zsh` might not look pretty, but it is beginning to look like something that might be standardized on. Next step is to rewrite some of the other scripts to match the zsh one.
2023-09-05WIP: Cleanup and standardization 2Dennis Eriksen1-33/+51
Further work on standardizing and cleaning up. Gotta break some eggs etc.
2023-09-05WIP: Cleanup and standardizationDennis Eriksen1-24/+53
I want all the scripts to work in roughly the same way, with roughly the same functions, doing roughly the same thing. That way the benchmark means more. And also, I might learn something.
2023-09-04adding licenceDennis Eriksen1-3/+3
2023-09-01Split makepass out of idgattDennis Eriksen1-0/+0
This will now be a separate repo
2023-01-03Removed external dependencies from makepassDennis Eriksen1-67/+118
Script now only uses zsh, and is over 700% faster. w00p
2022-12-30added helptext and some environmentalsDennis Eriksen1-9/+83
2022-12-20a bit more work on makepass.zsh and makepass.shDennis Eriksen1-36/+35
2022-12-20forgot to change an instance of head -cDennis Eriksen1-1/+1
also, RANDOM is reserved in ksh. Use var with other name.
2022-12-19head -c is not portable.. tail -c is. and head -nDennis Eriksen1-6/+6
2022-12-19adding a zsh and a posix sh implementation of makepass.Dennis Eriksen1-0/+88