Coders Packet

Packets submitted by Sharad Verma

Run Length Encoding (RLE) compression and decompression in C++

This C++ program implements Run Length Encoding (RLE) compression and decompression which is a lossless technique for data compression.

C++ program to print all the possible permutations of a string.

This packet implements the algorithm to find all the possible permutations of a string in C++

Caesar Cipher encryption and decryption in C++

This packets implements one of the most basic method of encryption called Caesar cipher encryption along with decryption in C++

128-bit AES encryptor and decryptor in C++

This C++ packet performs 128-bit AES encryption and decryption on plain data and encrypted data respectively.

Line coding encoder and scrambler with digital data generator in C++

This C++ code implements line coding schemes such as NRZ-L, NRZ-I, Manchester, Differential Manchester, and AMI (with scrambling) on the randomly generated binary data stream.