Skip to content
Snippets Groups Projects
Xor.java 230 B
Newer Older
20041679 .'s avatar
20041679 . committed
public class Xor {
    public static byte[] xorCipher(byte[] c, byte[] k) {
        byte[] ret = c.clone();
        for (int i = 0; i < c.length; ++i) {
            ret[i] ^= k[i % k.length];
        }
        return ret;
    }
}