-
-
Save CptTZ/a7af73215bc3fc4880bc37818e366af3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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; | |
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; | |
for (int i = 0; i < 256; i++) { | |
j = (j + S[i] + T[i]) & 0xFF; | |
S[i] ^= S[j]; | |
S[j] ^= S[i]; | |
S[i] ^= S[j]; | |
} | |
} | |
} | |
public byte[] encrypt(final byte[] plaintext) { | |
final byte[] ciphertext = new byte[plaintext.length]; | |
int i = 0, j = 0, k, t; | |
for (int counter = 0; counter < plaintext.length; counter++) { | |
i = (i + 1) & 0xFF; | |
j = (j + S[i]) & 0xFF; | |
S[i] ^= S[j]; | |
S[j] ^= S[i]; | |
S[i] ^= S[j]; | |
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); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Reference: