This document describes a new proposed symmetric key encryption algorithm. It begins with background on cryptography and then describes the new algorithm. The algorithm encrypts text by taking the ASCII value of each character, reversing the 8-bit binary representation, dividing this by a 4-digit key, and storing the remainder in the first 3 digits and quotient in the next 5 digits to form the ciphertext. It provides an example of encrypting the character 'T' using this process. The document suggests this algorithm is easy to implement and more secure than existing algorithms due to using a reversal operation during encryption.
Related topics: