Password entropy
Entropy estimates the search space from password length and active charset size. Longer random values usually matter more than complex rules.
Security utility
Create random passwords and salts with browser cryptographic randomness, then inspect charset size, entropy, and output formats.
Values are generated with crypto.getRandomValues.
Ready to generate secure values.
Generate random salt bytes and choose an encoding.
Entropy estimates the search space from password length and active charset size. Longer random values usually matter more than complex rules.
Salts should be random and unique. They are normally stored beside a password hash and do not need to be memorized or kept secret.
crypto.getRandomValues provides browser cryptographic random bytes. The generator uses rejection sampling to avoid modulo bias when choosing characters.
Usage guide
It generates random passwords and salts with Web Crypto, estimates entropy, and displays the active character composition.
Change length, toggle character groups, skip ambiguous characters, then compare entropy and salt formats before copying a value.
Use it for temporary credentials, demo secrets, database seed data, password hash salts, or teaching why length and randomness matter.