cd ../tools
$ Hash Generator
Generate cryptographic hashes using MD5, SHA-1, SHA-256, SHA-384, and SHA-512 algorithms.
100% Client-Side - Your data never leaves your browser
hash_input.sh
$ hash_results
$ cat hash_algorithms.md
MD5
INSECURE
128-bit hash. Fast but cryptographically broken. Use only for checksums.
SHA-1
DEPRECATED
160-bit hash. Collision attacks exist. Avoid for security purposes.
SHA-256
RECOMMENDED
256-bit hash. Part of SHA-2 family. Secure and widely used.
SHA-384
SECURE
384-bit hash. Truncated SHA-512. Higher security margin.
SHA-512
SECURE
512-bit hash. Strongest SHA-2 variant. Best for high-security needs.
Security Note
Never use MD5 or SHA-1 for password hashing or security-critical applications. For passwords, use bcrypt, scrypt, or Argon2 instead.