Terminology Index

Glossary

1 term tagged "stream-ciphers"

Open concept maps

Showing 1-1 of 1 term

S
1

Stream Ciphers

Symmetric encryption algorithms that encrypt data one bit or byte at a time, useful for streaming use cases like real-time audio/video, contrasted with block ciphers that encrypt fixed-size chunks.

Stream ciphers encrypt data continuously, mixing the plaintext with a pseudorandom keystream derived from the key. They are efficient for streaming applications and small messages and form one half of the symmetric-cipher landscape alongside block ciphers. Modern practice often uses authenticated encryption modes (like AES-GCM) that build on block ciphers, but stream-cipher concepts remain foundational cryptography literacy. Misuses (key reuse with stream ciphers) are classic implementation errors to recognize.

Introduced in: Cryptography Essentials

Examples

  • Encrypting a real-time stream with a stream cipher.
  • Recognizing key-reuse with stream ciphers as a serious mistake.
  • Comparing stream ciphers with block-cipher modes like AES-GCM.

No related terms linked yet.