Perl Stream Cipher

olddog_13

Roger Doss

Posted on August 16, 2023

Perl Stream Cipher

A stream cipher is a type of cipher that encrypts each bit. I used this design to implement a cipher in Perl that uses SHA-3 as the basis for the pseudo-random bits. The code gets a random set of numbers as a key from random.org, and then encrypts them using a password on disk for key storage. The on disk algorithm is AES.

The stream cipher then uses the random key to encrypt by xor function of each byte of the plain text, to create the cipher text. When it needs more bits, it re-hashes the key using SHA-3.

The algorithm can be run using:

perl -I. ssc_main.pl input.plain output.cipher

The implementation is here:

StreamCipher

💖 💪 🙅 🚩
olddog_13
Roger Doss

Posted on August 16, 2023

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

Perl Stream Cipher
perl Perl Stream Cipher

August 16, 2023