Stream encryption

Unlike block encryption, in the case of stream encryption, every byte is encrypted separately. Pseudo-random numbers which are generated on the basis of the key are used for encryption. The encryption result for each byte depends on the encryption result of a previous byte. This method features high performance and is used to encrypt data sent over communication channels.

Home