secpwgen
2 likes
A utility for generating secure passphrases. Implements several methods for passphrase generation, including the Diceware method.
License model
- Free • Open Source
Country of Origin
Croatia
EU
Platforms
- Mac
- Windows
- Linux
Features
secpwgen News & Activities
Highlights All activities
Recent activities
- Maoholguin added secpwgen as alternative to SGen Libre
- POX added secpwgen as alternative to PSWD: Password Generator
- POX added secpwgen as alternative to Password Tech
Comments and Reviews
Has anyone gotten this to run on mac? or node
[Edited by Oldarney, January 04]
On node there is a package called koremutake, which has a small sliver of the functionality, but might be enough for some people. It can only reliably get up to 6 bytes on my Mac Pro, beyond that I hit the Number.MAX_SAFE_INTEGER https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER https://gist.github.com/joepie91/7105003c3b26e65efcea63f3db82dfba
node -e 'console.log(require("koremutake").encode((parseInt(crypto.randomBytes(6).toString("hex"),16))))'
or scaped for bash
Koremutake is a MeRS algorithm (Memorable Random Strings)
[Edited by Oldarney, January 04]