Posts tagged "hashing"

4 posts tagged with hashing.

How Bcrypt Hashes Passwords (And Why Cost Factor Matters)
securitypasswordscryptographyhashing
How Bcrypt Hashes Passwords (And Why Cost Factor Matters)

Bcrypt is the password-hashing standard most modern apps still rely on. Here's how the Blowfish-based KDF works, why the cost factor matters, and how to pick a value that ages well as hardware speeds up.

May 9, 2026 ·9 min read
What Is a Checksum and Why It Matters for Data Integrity
checksumsintegrityhashingdata
What Is a Checksum and Why It Matters for Data Integrity

A checksum is a small number computed from a block of data that lets you verify the data has not changed. Here is why this simple idea underpins file downloads, network protocols, and storage systems.

February 19, 2026 ·7 min read
Hashing Algorithms Explained: MD5, SHA-256, bcrypt — When to Use Which
hashingsecuritycryptographypasswords
Hashing Algorithms Explained: MD5, SHA-256, bcrypt — When to Use Which

MD5 and bcrypt are both called hashing algorithms, but they serve completely different purposes. This guide explains what makes a hash function suitable for checksums versus password storage.

January 29, 2026 ·10 min read
Encoding vs Encryption vs Hashing: The Key Differences Explained
securitycryptographyencodinghashing
Encoding vs Encryption vs Hashing: The Key Differences Explained

Treating Base64 as encryption or MD5 as a secure hash are among the most common security mistakes developers make. This post draws a clear line between encoding, encryption, and hashing.

January 19, 2026 ·8 min read