RC4Base加密和解密

private static byte[] RC4Base(byte[] input, String mKkey) {
    int x = 0;
    int y = 0;
    byte key[] = initKey(mKkey);
    int xorIndex;
    byte[] result = new byte[input.length];

    for (int i = 0; i < input.length; i++) {
        x = (x + 1) & 0xff;
        y = ((key[x] & 0xff) + y) & 0xff;
        byte tmp = key[x];
        key[x] = key[y];
        key[y] = tmp;
        xorIndex = ((key[x] & 0xff) + (key[y] & 0xff)) & 0xff;
        result[i] = (byte) (input[i] ^ key[xorIndex]);
    }
    return result;
}

private static byte[] initKey(String aKey) {
    byte[] b_key = aKey.getBytes();
    byte state[] = new byte[256];

    for (int i = 0; i < 256; i++) {
        state[i] = (byte) i;
    }
    int index1 = 0;
    int index2 = 0;
    if (b_key == null || b_key.length == 0) {
        return null;
    }
    for (int i = 0; i < 256; i++) {
        index2 = ((b_key[index1] & 0xff) + (state[i] & 0xff) + index2) & 0xff;
        byte tmp = state[i];
        state[i] = state[index2];
        state[index2] = tmp;
        index1 = (index1 + 1) % b_key.length;
    }
    return state;
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值