S
S
secpwgen
2 likes
A utility for generating secure passphrases. Implements several methods for passphrase generation, including the Diceware method.
Cost / License
- Free
- Open Source
Alerts
- Discontinued
Platforms
- Mac
- Windows
- Linux
Discontinued
The website is unavailable.
Features
- Password Generator
secpwgen News & Activities
Highlights All activities
Recent activities
- metaphil updated secpwgen
- snowbirdcrossing added secpwgen as alternative to Password Generator Extension
secpwgen information
What is secpwgen?
A utility for generating secure passphrases. Implements several methods for passphrase generation, including the Diceware method.
Official Links
There are no links for this app, or they've been disabled.



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]