1/4
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No study sessions yet.
ECB (Electronic Codebook)
encrypts each block independently; leaks patterns (same plaintext block = same ciphertext block)
CBC (Cipher Block Chaining)
XOR plaintext with previous ciphertext before encrypting; needs an IV for first block; hides patterns
CFB (Cipher Feedback)
stream-like; encrypt previous ciphertext/IV to make a keystream chunk, then XOR with plaintext
OFB (Output Feedback)
stream-like; repeatedly encrypt IV/output to make keystream, then XOR with plaintext; doesn't feed back ciphertext
CTR (Counter Mode)
stream-like; encrypt nonce+counter to make keystream, then XOR; fast + parallel (blocks independent)