Commits


tweak pwg.1 DESCRIPTION


tweak pwg.1 DESCRIPTION and -w description


pwg.1: start sentences with a capital letter


pwg: specify the expected format for a wordlist


rewrite pwg in perl; fix diceware-style generation issues After a discussion with Alexander Arkhipov turned out pwg had some major issues: - `sort -R' is non-standard (although quite popular) - `sort -R' is not required to employ good randomness - `sort -R | head -nX' has less entropy than a true diceware (not all words have the same probability) So, rewrite it in perl where it's easier to roll an arc4random-esque function on top of /dev/urandom. randline() employs the same algorithm used by arc4random_uniform(). The new diceware generator code was based on a sample code provided by Alexander Arkhipov, thanks!


tweak pwg.1


add pwg: password generator