Explain how a stream cipher works…
An encryption process in which a key encrypts information one byte at a time. The key is fed into a pseudorandom generator. This outputs a key-stream. The key-stream is XORd with the plain text one byte at a time.
What operation if performed to encrypt and decrypt the data in stream ciphers?
XOR