Android Byte Array XOR xorFor16(byte[] b1, byte[] b2)

Here you can find the source of xorFor16(byte[] b1, byte[] b2)

Description

xor For

Declaration

public static byte[] xorFor16(byte[] b1, byte[] b2) 

Method Source Code

//package com.java2s;

public class Main {

    public static byte[] xorFor16(byte[] b1, byte[] b2) {
        byte[] result = new byte[16];
        for (int i = 0; i < 16; i++) {
            result[i] = (byte) (b1[i] ^ b2[i]);
        }//  www . j  av a 2  s  . co m
        return result;
    }
}

Related

  1. xor(byte[] b1, byte[] b2)
  2. xor(byte[] bytes, int offset, byte[] bytesToMix, int mixOffset, int len)
  3. xor(byte[] data1, byte[] data2)
  4. xor(byte[] dest, byte[] bytesToMix)