SHA algorithms
Formalint generates SHA-1, SHA-256, SHA-384 and SHA-512 digests through the browser Web Crypto API.
Browser-based developer tools
Generate SHA-1, SHA-256, SHA-384 and SHA-512 text digests with the browser Web Crypto API.
Reference notes
Formalint generates SHA-1, SHA-256, SHA-384 and SHA-512 digests through the browser Web Crypto API.
Hashes are useful for comparing text values, fixtures, examples and API payloads during development.
Plain SHA hashes are not enough for password storage. Production systems need salted, slow password hashing algorithms.
Frequently asked
SHA-256 is the standard general-purpose choice for checksums and integrity checks. SHA-1 is considered weak for security purposes and should only be used for legacy compatibility, not for anything security-sensitive.
No. Cryptographic hash functions are one-way. The only way to check if a piece of text matches a hash is to hash that text again and compare the two digests.
No. Plain SHA hashes are unsuitable for password storage because they are fast to compute, making brute-force attacks feasible. Password storage should use a slow, salted algorithm such as bcrypt or Argon2 instead.