SimpleToolbox
Privacy Tools

Privacy & Security Tools

Tools to enhance your online privacy and generate secure credentials.

Free privacy and security tools for generating secure passwords, hashing credentials with bcrypt, and protecting your digital identity. Everything runs client-side — your data never leaves your device.

Frequently Asked Questions

What privacy tools are available?

Password generator (crypto.getRandomValues()), bcrypt hash generator and verifier.

Is the password generator truly random?

Yes — it uses the browser's native crypto.getRandomValues() API, which draws entropy from hardware sources. This is cryptographically secure randomness, not Math.random().

Can I use the bcrypt tool with real passwords?

Yes — bcrypt hashing runs entirely in your browser using bcryptjs. Your plain text password is never transmitted anywhere, making it safe to use with real credentials during development.

Why should I use a password generator instead of making up my own password?

Human-generated passwords follow predictable patterns. A 16-character randomly generated password has roughly 105 bits of entropy — exponentially harder to crack than any memorable password a person would invent.