← Cybersecurity Alphabet Soup

ECB

Electronic Codebook

cryptomedium

ECB is the simplest block cipher mode: each block is encrypted independently with the same key. Identical plaintext blocks therefore produce identical ciphertext blocks, leaking patterns; the famous encrypted Linux penguin image makes this visible. It should never be used for real data, and its presence in code is a classic security review finding.

Sources

More in crypto