This is a simple implementation of RC4 cipher referring to Wikipedia: http://en.wikipedia.org/wiki/RC4. The keys and plaintext are ASCII, the keystream and ciphertext ...
The program currently works by recieving the text to be encoded and the key both in the form of a UTF-8 string, then convert them to integers to work with them mathematically, and finally output the ...