Compute SHA-256 of text locally using SubtleCrypto.
SHA‑256 is a cryptographic hash function that deterministically maps any input to a 256‑bit digest. It is collision‑resistant for practical purposes and widely used for integrity checks and signatures.
crypto.subtle.digest('SHA-256', bytes).Security note: SHA‑256 alone is not a password hash; use a key‑stretching KDF (e.g., scrypt, Argon2, PBKDF2) for storing passwords.
Data is never sent to a server.
Text input only; large inputs may be slow.
Looking for broader guides and best practices? Visit the ToolsAreUs Blog for indexes (like the full tool list) and articles (e.g. secure password generation).