Live data from Hacker News

Show HN: Cryptographically random strings with zero clicks

random.connorlanigan.com

1–4 of 4 posts

Re: Show HN: Cryptographically random strings with zero clicks

#2
Whenever I need random data for something (as a password, a token, a seed, a server-side secret...) and google for a generator, I always end up on random.org, entering the same configuration, clicking the same checkboxes and clicking the same button. This takes an unnecessary amount of time.

I built this website that uses secure defaults and immediately presents you with a string of random data generated locally in your browser. It uses the Web Crypto API [1] for obtaining strong randomness. It's running on Cloudflare to be as fast as possible.

[1] https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_...

Re: Show HN: Cryptographically random strings with zero clicks

#3

Whenever I need random data for something (as a password, a token, a seed, a server-side secret...) and google for a generator, I always end up on random.org, entering the same configuration, clicking the same checkboxes and clicking the same button. This takes an unnecessary amount of time. I built this website that uses secure defaults and immediately presents you with a string of random data generated locally in y…

You'd use a website and a web browser for generating random data for a password or a server-side secret? What's wrong with "head -c 16 /dev/urandom | base64"? (Except that it assumes Linux.)