secpwgen
- Free • Open Source
- Mac
- Windows
- Linux
What is secpwgen?
A utility for generating secure passphrases. Implements several methods for passphrase generation, including the Diceware method.
secpwgen Screenshots
secpwgen Features
Comments and Reviews
Tags
- passwords
- secure-passwords
Category
Security & PrivacyRecent user activities on secpwgen
bibakis added secpwgen as alternative(s) to RandomPasswordGenerator.app
- asocialis added secpwgen as alternative(s) to IObit Random Password Generatoras
- cherguicnadjib added PD as an alternative to secpwgench
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]