Brain Dump

Stream Cipher

Tags
cryptography

A cipher which combines (XORs) a psuedo-random digit stream with the plaintext digit stream to get the ciphertext. In this implementation the algorithm encrypts the plain-text one bit at a time.

Classical Stream Cipher Model

A Stream Cipher that takes the output of an LFSR (or series of combined LFSR) and XORs it with the plain-text stream to get the ciphertext.