Last active
August 29, 2015 14:18
-
-
Save manusreload/52ee5233b44adf046748 to your computer and use it in GitHub Desktop.
RC4 keygenerator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class RC4 { | |
private final byte[] S = new byte[256]; | |
private final byte[] T = new byte[256]; | |
private final int keylen; | |
private int i = 0, j = 0, k, t; | |
public RC4(final byte[] key) { | |
if (key.length < 1 || key.length > 256) { | |
throw new IllegalArgumentException( | |
"key must be between 1 and 256 bytes"); | |
} else { | |
keylen = key.length; | |
for (int i = 0; i < 256; i++) { | |
S[i] = (byte) i; | |
T[i] = key[i % keylen]; | |
} | |
int j = 0; | |
byte tmp; | |
for (int i = 0; i < 256; i++) { | |
j = (j + S[i] + T[i]) & 0xFF; | |
tmp = S[j]; | |
S[j] = S[i]; | |
S[i] = tmp; | |
} | |
} | |
} | |
public byte[] encrypt(final byte[] plaintext) { | |
return encrypt(plaintext, true); | |
} | |
public byte[] encrypt(final byte[] plaintext, boolean reset) { | |
final byte[] ciphertext = new byte[plaintext.length]; | |
if(reset) | |
{ | |
i = j = k = t= 0; | |
} | |
byte tmp; | |
for (int counter = 0; counter < plaintext.length; counter++) { | |
i = (i + 1) & 0xFF; | |
j = (j + S[i]) & 0xFF; | |
tmp = S[j]; | |
S[j] = S[i]; | |
S[i] = tmp; | |
t = (S[i] + S[j]) & 0xFF; | |
k = S[t]; | |
ciphertext[counter] = (byte) (plaintext[counter] ^ k); | |
} | |
return ciphertext; | |
} | |
public byte[] decrypt(final byte[] ciphertext) { | |
return encrypt(ciphertext, true); | |
} | |
public byte[] generate(int size) | |
{ | |
byte[] data = new byte[size]; | |
return encrypt(data, false); | |
} | |
public int getKeylen() { | |
return keylen; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment