|
|
|
|
|
by agwa
3234 days ago
|
|
> (note for people who may not know pwgen : it outputs 20 lines of 8 random passwords) Unfortunately, it only does this if STDOUT is a TTY. If it's a pipe, then it outputs a single 8 character long password. So I'm afraid you've been generating rather low entropy passwords by piping the output of pwgen through md5sum. You can confirm this by piping pwgen through cat: pwgen | cat |
|