What is RC4
RC4 is a stream cipher designed at 1978 by Ron Rivest for RSA security, and stayed secret until RC4 posted anonymously at September 1994 .RC4 used in standard SSL\TLS for communication between client and server, and involved in WEP protocol and newer WPA protocol that is part at IEEE 802.11 WLAN standards.
Algorithm
Encrypting n numbers of bytes using RC4 algorithm based on encrypting each 256 bytes together and moving to next block after that until finishing the whole data.The following are the steps of encrypting each block of data:
- Choose variable length key from 1 to 256 bytes (8 to 2048 bits)
- The chosen key is used for initialization S vector (S[0],S[1], ... ,S[255])
- Permutation of S vector using the key for generating RC4 key
- The elements of RC4 reordered
- The elements of plain text Xored using the RC4 key
Using the Code
The source code contains the class RC4.java that contains the main methods for encrypting the message, and the main class calls the startCiphering
method at RC4.java for starting the ciphering of plain text. The code reads the messages and start ciphering the 256 blocks at the plain text one by one.
At the beginning in the initialization method, get block of 256 bytes from plain text and initialize S vector with size 256. After that, the elements of S vector is permutated.
for (; Ptr1 < MessageBlockSize; Ptr1++) {
intUnSignedByteKey = getUnsigendByte(T_signedByteKey[Ptr1]);
Ptr2 = (Ptr2 + S[Ptr1] + intUnSignedByteKey) % MessageBlockSize;
temp = S[Ptr1];
S[Ptr1] = S[Ptr2];
S[Ptr2] = temp;
}
At GenerateRC4Key()
, the elements of S vector is permutated using the key for generating the RC4 key...
for (int index = 0; index < MessageBlockSize; index++) {
Ptr1 = (Ptr1 + 1) % MessageBlockSize;
Ptr2 = (Ptr2 + S[index]) % MessageBlockSize;
temp = S[Ptr1];
S[Ptr1] = S[Ptr2];
S[Ptr2] = temp;
t = (S[Ptr1] + S[Ptr2]) % MessageBlockSize;
RC4Key[index] = S[t];
}
...encrypting the plain text at Encryption()
method, by Xoring the elements at S vector and elements at plain text.
for (int index = 0; index < MesssageBlock.length; index++) {
intCipherByte = ((int) MesssageBlock[index] ^ (int) RC4Key[index]);
CipherBlock[index] = (byte) intCipherByte;
char x = (char) CipherBlock[index];
System.out.print(x);
}