Cryptographic hashing in the browser
A hash is a fixed-length fingerprint of your input β the same text always produces the same hash, and even a tiny change produces a completely different one. Useful for checksums, integrity checks, and deduplication. Computed locally via the Web Crypto API. Note: MD5 and SHA-1 are not collision-resistant; prefer SHA-256 or stronger for security.