惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
罗磊的独立博客
T
Tailwind CSS Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Jina AI
Jina AI
V
V2EX
美团技术团队
阮一峰的网络日志
阮一峰的网络日志
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
量子位
MyScale Blog
MyScale Blog
G
Google Developers Blog
M
MIT News - Artificial intelligence
L
LangChain Blog
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
MongoDB | Blog
MongoDB | Blog
N
Netflix TechBlog - Medium
有赞技术团队
有赞技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
B
Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Understanding CBC Mode: How Block Cipher Chaining Actuall...
Arashad Dodhiya · 2026-06-16 · via DEV Community

The missing piece most developers never learn about AES encryption.

Encryption Is More Than Just AES

Ask a developer what encryption algorithm their application uses, and you'll often hear:

"We use AES-256."

That's good—but incomplete.

Here's the thing: AES alone doesn't tell the whole story.

AES is only the encryption algorithm. To encrypt data larger than a single block, AES needs a mode of operation. One of the most widely used modes in the past was CBC (Cipher Block Chaining).

Understanding CBC is important not only for developers but also for security engineers, because many cryptographic attacks—such as CBC bit flipping and padding oracle attacks—stem from how CBC works.

By the end of this article, you'll understand:

  • What symmetric encryption is
  • What AES actually does
  • Why modes of operation exist
  • How CBC encryption and decryption work
  • The role of the Initialization Vector (IV)
  • Why CBC has limitations

Let's begin from the ground up.


What Is Symmetric Encryption?

Symmetric encryption uses the same secret key for both encryption and decryption.

Think of it like a house key:

  • You lock the door with one key.
  • You unlock it with the same key.

Encryption works similarly.

Plaintext + Secret Key → Ciphertext
Ciphertext + Same Key → Plaintext

Examples of symmetric encryption algorithms:

  • AES
  • DES
  • Blowfish

The challenge isn't just keeping the key secret.

It's also encrypting data securely.


What Is AES?

AES stands for Advanced Encryption Standard and is one of the most widely used encryption standards in the world. It uses the same secret key for encryption and decryption and supports key sizes of 128, 192, and 256 bits.

You'll encounter AES in:

  • HTTPS
  • VPNs
  • Disk encryption
  • Password managers
  • Secure messaging apps

But AES has an important limitation.

It encrypts fixed-size blocks.

For AES, that block size is always:

128 bits (16 bytes).

And this leads us to the next concept.


What Is a Block Cipher?

A block cipher encrypts data in fixed-size chunks called blocks.

Imagine the message:

HELLO WORLD THIS IS A SECRET MESSAGE

AES doesn't encrypt the whole message at once.

Instead, it splits it into blocks:

Block 1
Block 2
Block 3
...

Each block is encrypted separately.

Sounds simple.

But there's a problem.


Why Do We Need Modes of Operation?

Suppose two blocks contain identical data:

Block A = ADMIN
Block B = ADMIN

If we encrypt them independently using the same key, the ciphertext may also be identical.

An attacker could start spotting patterns.

And patterns are dangerous in cryptography.

To solve this problem, cryptographers created modes of operation.

Modes define how blocks interact with each other during encryption.

Common modes include:

  • ECB
  • CBC
  • CTR
  • GCM

Today we're focusing on CBC.


ECB vs CBC: Why CBC Was Introduced

ECB (Electronic Codebook)

ECB encrypts every block independently:

P1 → Encrypt → C1
P2 → Encrypt → C2
P3 → Encrypt → C3

The problem?

Identical plaintext blocks produce identical ciphertext blocks. This leaks patterns in the data.

CBC (Cipher Block Chaining)

CBC fixes this by linking blocks together.

Each plaintext block is combined with the previous ciphertext block before encryption.

As a result:

Every block depends on all previous blocks.

This greatly reduces pattern leakage.


What Is an Initialization Vector (IV)?

There's one problem.

The first block has no previous ciphertext block.

So what should CBC use?

The answer is the Initialization Vector (IV).

An IV is a random value used only for the first block. It ensures that encrypting the same plaintext twice with the same key produces different ciphertext.

Important facts:

✅ IV does not have to be secret

✅ IV should be unique and unpredictable

❌ Reusing IVs can weaken security

Think of the IV as a random starting point.


Real-World Analogy: Passing Secret Notes

Imagine a chain of people passing secret notes.

Each person doesn't just encrypt their message.

They also mix it with the previous person's encrypted message.

If one note changes, every note afterward changes too.

That's exactly how CBC works.

Hence the name:

Cipher Block Chaining.


How CBC Encryption Works

CBC encryption follows this formula:

C₁ = Encrypt(P₁ XOR IV)

C₂ = Encrypt(P₂ XOR C₁)

C₃ = Encrypt(P₃ XOR C₂)

Where:

  • P = Plaintext
  • C = Ciphertext
  • IV = Initialization Vector

Each block depends on the previous ciphertext block.

Encryption Flow

Plaintext Block 1
        ↓
XOR with IV
        ↓
AES Encrypt
        ↓
Ciphertext Block 1
        ↓
XOR with Plaintext Block 2
        ↓
AES Encrypt
        ↓
Ciphertext Block 2

A small change in one block affects all following ciphertext blocks.

This property is called chaining.


How CBC Decryption Works

Decryption reverses the process.

Formula:

P₁ = Decrypt(C₁) XOR IV

P₂ = Decrypt(C₂) XOR C₁

P₃ = Decrypt(C₃) XOR C₂

Notice something interesting?

The previous ciphertext block is required for decryption.

This design decision later enabled attacks such as:

  • CBC Bit Flipping
  • Padding Oracle Attacks

We'll cover those in future articles.


Why XOR Matters

XOR (Exclusive OR) is one of the most important operations in cryptography.

A special property of XOR:

A XOR B XOR B = A

This allows data to be mixed and later recovered during decryption.

Without XOR, CBC would not work.


Advantages of CBC Mode

CBC improved upon ECB in several ways:

✅ Hides repeating patterns

✅ Makes ciphertext less predictable

✅ Widely supported historically

✅ Strong confidentiality when implemented correctly

For many years, CBC was the standard choice in protocols and applications.


Limitations of CBC Mode

CBC isn't perfect.

Some limitations include:

❌ Requires padding

❌ Encryption cannot be parallelized efficiently

❌ Incorrect IV handling weakens security

❌ Provides confidentiality but not integrity

This last point is critical.

Encryption alone does not guarantee that ciphertext hasn't been modified.

That's why modern applications often use authenticated encryption modes such as AES-GCM, which provide both confidentiality and integrity.


Why CBC Still Matters Today

Even though modern systems increasingly prefer AES-GCM, CBC still appears in:

  • Legacy applications
  • Older TLS implementations
  • Custom encryption schemes
  • Historical vulnerability research

If you're a developer, understanding CBC helps you build safer systems.

If you're a security researcher, understanding CBC helps you recognize cryptographic weaknesses.

Because in security, understanding the design is often more important than memorizing the attack.


What's Next?

Now that you understand how CBC works, the next question becomes:

What happens if an attacker modifies the ciphertext?

That question leads directly to one of the most fascinating cryptographic attacks:

CBC Bit Flipping.

And that's exactly what we'll explore next.