• Latest
  • Trending
  • All

Hash Generator: MD5, SHA-256, SHA-512, File Checksums and HMAC

June 14, 2026
ssh command cheatsheet

SSH Command Cheatsheet: Connect, Keys, scp, Tunnels (2026)

June 16, 2026
chmod-chown-cheatsheet

chmod and chown Cheatsheet: Linux Permissions, Decoded (2026)

June 16, 2026
systemctl-journalctl-cheatsheet

systemctl + journalctl Cheatsheet: Services and Logs (2026)

June 16, 2026
grep-cheatsheet

The grep Cheatsheet: Search a File, Search a Tree (2026)

June 16, 2026
rsync-cheatsheet

The rsync Cheatsheet: Mirror, Sync, Copy Over SSH (2026)

June 16, 2026
curl-cheatsheet

curl Cheatsheet: Download Files and Test APIs (2026)

June 16, 2026
iptables-vs-nftables-cheatsheet cheatsheet

iptables vs nftables: Linux Firewall Cheatsheet, Side by Side

June 16, 2026
nmcli-cheatsheet cheatsheet

nmcli Cheatsheet: Wi-Fi and Network Connections From the Linux Terminal

June 16, 2026
powershell-networking-cheatsheet cheatsheet

PowerShell Networking Cheatsheet: Test-NetConnection, IP, DNS (2026)

June 16, 2026
tar command cheatsheet

The tar Command Cheatsheet: Create, Extract, Stop Guessing (2026)

June 16, 2026
Linux find command cheatsheet

The find Command Cheatsheet: Every Recipe You Actually Use (2026)

June 15, 2026
Linux networking commands cheatsheet, ip and ss

Linux Networking Commands in 2026: the ip and ss Cheatsheet

June 15, 2026
  • Online Tools
  • Network Tools
  • Developer Tools
  • Security Tools
Tuesday, June 16, 2026
  • Login
People Are Geek
  • Online Tools
  • Network Tools
  • Developer Tools
  • Security Tools
No Result
View All Result
People Are Geek
No Result
View All Result
Home Developer Tools

Hash Generator: MD5, SHA-256, SHA-512, File Checksums and HMAC

by People Are Geek
June 14, 2026
in Developer Tools, Online Tools, Security Tools
0
0
SHARES
8
VIEWS
Share on FacebookShare on Twitter

Local hash, checksum, MD5 legacy and HMAC workbench

I built this out of spite, honestly. Every time a download’s checksum didn’t match, I’d go hunting for a hash page I actually trusted, and half of them ship your text off to some server. So. Paste text or drop a small file. You get MD5, SHA-1, SHA-256, SHA-384 and SHA-512, computed right here in your browser. Paste an expected digest to compare against. Flip between hex and Base64. Sign something with HMAC. And the part people get wrong, when a hash is the right call versus when you really wanted a signature or a proper password hash, that’s down below.

It all runs locally, so your text, your file, your secret, none of it leaves the page. And I’ll say it as often as it takes: don’t store passwords as plain MD5 or a raw SHA digest. Wrong tool for the job.

Recommended security gearWe may earn a commission, at no extra cost to you.
Yubikey Security KeyCheck price on Amazon →Password ManagerCheck price on Amazon →Usb Data BlockerCheck price on Amazon →Webcam Cover SlideCheck price on Amazon →

Hash generators are for fingerprints, not secrecy

The way I think about it: a hash is a fingerprint. Same bytes in, same digest out, every single time. Change one character and the whole string scrambles into something unrecognizable. Great for checksums on a release download, cache keys, hunting duplicates, a sample payload in your docs, that kind of quick integrity check. Encryption it is not. No decrypt button. No key that walks it back. A bare hash sitting on its own won’t protect a password or a bearer token, and I think people forget that more often than they’d admit.

I built this around the stuff I actually touch in a normal week. MD5’s in here for when some ancient checksum lands on your desk. SHA-1 for the systems that still won’t let go of it. SHA-256, SHA-384 and SHA-512 cover everything modern. Type something in or drop a small file, paste a checksum to compare, pick hex or Base64, sign with an HMAC secret. The notes flag which outputs are safe to paste into a doc, and which ones should stay nowhere near a real security decision.

How to choose an algorithm

Left to my own devices, I grab SHA-256 nearly every time. It’s quick, nobody picks a fight over it, and the digest lands at a reasonable length. SHA-512 only comes out when the project already talks in it, or when nobody minds the longer string. MD5? One reason, ever. Some old tool handed me an MD5 and I have to verify it. Its collision resistance has been dead for years now, so it stays miles from any fresh security call. HMAC is a different animal: reach for it when the other side needs proof the message came from someone holding the shared secret, not just proof the bytes made it across intact.

  • MD5 is here for old checksums and migration grunt work. Keep it away from anything security-related.
  • SHA-1 is past its prime too, but older systems still hand it to you, so you’ll meet it.
  • SHA-256 is my default for anything modern.
  • HMAC ties a message to a secret. That’s the thing you want behind signed webhooks or a quick API example.
  • File hashing earns its keep the moment you’re verifying a downloaded archive, or an export you generated five minutes ago.

Common hash debugging examples

A vendor ships a checksum next to the download? Hash the file, check it lines up, then run it. Never the other way round. An API signs its webhooks? Hash the raw body byte-for-byte, not the pretty-printed JSON your HTTP client politely reformatted for you. People trip on that one constantly. And when two payloads look identical but the digests refuse to agree, it’s whitespace nine times out of ten. Or encoding. A stray CRLF, fields shuffled into a different order. I lost most of an afternoon once to a single trailing newline, which still annoys me. Passwords, though? None of this. Go grab Argon2, bcrypt or scrypt and leave the fast SHA digests out of it entirely.

Common questions

Is hashing the same as encryption?

Nope. And the gap between them trips a lot of people up. Encryption is a round trip: hold the key, get your original back. Hashing only goes one direction, like a fingerprint you can’t un-press. Here’s the catch though. If the input is short or guessable, nothing stops someone throwing a pile of candidates at it until one digest matches.

Why include MD5 if it is weak?

Because the real world is littered with MD5 checksums people published years back and never bothered to update. You still need to check things against them. I tag it legacy so you can do exactly that, without anyone wandering off convinced MD5 is secure. It isn’t.

When should I use HMAC?

Reach for HMAC when you need to prove a message came from someone who actually holds the shared secret, not just that the bytes survived the trip unchanged. Webhook signatures are the classic case. Or a quick internal API example where both sides already share the key.

Which hash should I use to store passwords?

None of the ones on this page. Use a slow KDF built for the job: bcrypt, scrypt, Argon2. MD5 and the whole SHA family are built for raw speed, and speed is precisely what hands an attacker billions of guesses every second. Exactly backwards from what you want here.

Is MD5 still safe to use?

Only for checksums where nobody’s actually trying to attack you. Its collision resistance has been thoroughly broken for years. So the moment a determined adversary walks into the picture, MD5 is done for anything touching signatures or integrity.

What is the difference between a hash and a checksum?

A plain checksum like CRC32 exists to catch accidents. A flipped bit from a flaky cable, a download that got truncated halfway. A cryptographic hash like SHA-256 catches all of that as well, but it keeps holding up when someone’s deliberately trying to slip a tampered file past you. That second part is the whole reason it costs more to compute.

Base64 Encoder DecoderJWT DecoderPassword Strength CheckerJSON Formatter

Sources & further reading

  • RFC 6234, SHA hash algorithms
  • NIST FIPS 180-4, Secure Hash Standard
ShareTweetPin
People Are Geek

People Are Geek

I'm Stephane, a network and systems engineer with over 15 years of hands-on experience on production infrastructure, virtualization (ESXi, Proxmox), networking, and self-hosting. Earlier in my career I built and ran a Linux resource site that became a well-known reference for sysadmins. Today I focus on cybersecurity, and I also work as a technical trainer, teaching networking and security to people who do it for a living. Everything on People Are Geek comes from real-world practice, not theory. I build every tool on this site myself, and I write about what I've actually deployed, broken, and fixed. If it's here, I've used it.

People Are Geek

Copyright © 2017 JNews.

Navigate Site

  • About PeopleAreGeek
  • Affiliate Disclosure
  • All Tools and Articles
  • Contact
  • Cookie Policy
  • Hyper-V Hub: Tools, Error Fixes and Lab Guides
  • Linux Hub: Cross-Distro Reference, Articles, Tools
  • Privacy Policy
  • Sample Page
  • Terms of Service
  • VMware vSphere & ESXi Hub: Tools, Error Fixes and Guides

Follow Us

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • Online Tools
  • Network Tools
  • Developer Tools
  • Security Tools

Copyright © 2017 JNews.