What are hashes for?
Hash functions turn any input into a fixed-length fingerprint. They’re used for checksums, data integrity, deduplication and (with salting) password storage.
FAQ
Why no MD5? Browsers’ Web Crypto API doesn’t include MD5 because it’s cryptographically broken — use SHA-256 or stronger.
Is my text private? Yes — hashing happens entirely in your browser.
