Live data from Hacker News

Show HN: Correct Horse Battery Staple password generator

correcthorse.pw

1–10 of 99 posts

Re: Show HN: Correct Horse Battery Staple password generator

#2
Background: I liked the xkcd-style password generation scheme as it was easy to remember, but existing generators online (that I could find, at least) all use Math.random() or other cryptographically insecure random number generators. While an actual attack on the RNG seems far-fetched, the very idea doesn't sit well with my crypto nerd side. So I decided to create my own that uses a CSPRNG that I can trust. This was a while ago.

Recently, I decided to package it up with a nice domain name and publish it in hopes that it would be useful to others.

Re: Show HN: Correct Horse Battery Staple password generator

#3
See also https://theworld.com/~reinhold/diceware.html (the "original", as far as I know).

KeePassXC has a passphrase generator, although it doesn't use the Diceware list as far as I know. https://keepassxc.org/images/screenshots/linux/screen_006.pn...

EDIT: Love the simplicity of https://correcthorse.pw/, good work!

Re: Show HN: Correct Horse Battery Staple password generator

#8
post #2

Background: I liked the xkcd-style password generation scheme as it was easy to remember, but existing generators online (that I could find, at least) all use Math.random() or other cryptographically insecure random number generators. While an actual attack on the RNG seems far-fetched, the very idea doesn't sit well with my crypto nerd side. So I decided to create my own that uses a CSPRNG that I can trust. This was…

What about https://www.random.org/? Why even use a PRNG if you can have the real thing?
Post reply on HN