Back to articles
MD5, SHA-256, SHA-512: Generate Hashes Online Without Installing Anything
How-ToTools

MD5, SHA-256, SHA-512: Generate Hashes Online Without Installing Anything

via Dev.to TutorialShaishav Patel

You need to hash something. A password, a file checksum, an API payload. You could install a library. Fire up the terminal. Run shasum -a 256 filename . Or you could just open a browser tab. I built a free Hash Generator that runs entirely in your browser — no install, no server, no signup. Here's what it does and when to use each algorithm. What Is a Hash, Actually? A hash function takes any input — a word, a sentence, an entire file — and produces a fixed-length string of characters. Two key properties: Same input always produces the same output. Hash "hello" with SHA-256 and you always get 2cf24dba5fb0a30e26e83b2ac5b9e29e1b161e5c1fa7425e73043362938b9824 . You can't reverse it. Given the hash, there's no way to recover the original input. This is intentional — it's what makes hashes useful for password storage. The 5 Algorithms: When to Use Each MD5 — 32 characters 5d41402abc4b2a76b9719d911017c592 MD5 is fast and compact. It's also cryptographically broken — researchers can generate

Continue reading on Dev.to Tutorial

Opens in a new tab

Read Full Article
6 views

Related Articles