Mello

Security

Generate passwords, hashes, UUIDs, and tokens.

3 tools · sorted by popularity

The security category is intentionally small: a password generator, a password strength checker, and a hash generator. All three run entirely in your browser, which is the right design for tools that handle passwords and credentials — pasting an active password into a web service that transmits it to a server is precisely the risk you want to avoid in the first place.

The password generator uses the Web Crypto API (crypto.getRandomValues), the same randomness source used for cryptographic keys, rather than the much weaker Math.random some online tools rely on. The strength checker estimates entropy and crack time based on length, character classes, and common patterns — heuristic, but useful as a gut check. The hash generator computes MD5, SHA-1, SHA-256, and SHA-512 fingerprints for file integrity, content addressing, and signature work. For password storage in a real system, use a key-stretching function (bcrypt, scrypt, Argon2) rather than a plain hash; cryptographic hashes alone are not suitable for passwords on their own.

Password Generator
Generate secure random passwords — cryptographically random, never leaves your browser.
Security
Hash Generator (MD5, SHA-1, SHA-256, SHA-512)
Hash any text with MD5, SHA-1, SHA-256, or SHA-512 — all in your browser.
Security
Password Strength Checker
See how long it would take to crack a password — never sent over the network.
Security

Other categories

{}Developer 20¤Finance 13Math & Units 4Design 9Image 49Text 10PDF 5Date & Time 7Data 2