SHA-1 Generator

Generate a 160-bit SHA-1 hash. Still common in legacy systems, not collision-resistant since 2017.

Advertisement
What is SHA-1?

160-bit hash. Wider than MD5, but also broken.

SHA-1 (Secure Hash Algorithm 1) was designed by the NSA and published as a U.S. federal standard. It produces a 160-bit hash (40 hex characters). Still used in git commit IDs and some legacy TLS handshakes, but Google demonstrated practical collisions in 2017 — meaning it should not be used for new cryptographic applications.

For new code, use SHA-256 (or SHA-3) for integrity, and bcrypt/argon2 for password storage.

Read more on Wikipedia
Copied to clipboard