Java xor xor(byte[] a, byte[] b)

Here you can find the source of xor(byte[] a, byte[] b)

Description

bytewise xor of two arrays

License

Open Source License

Parameter

Parameter Description
a a parameter
b a parameter

Declaration

public static byte[] xor(byte[] a, byte[] b) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    /**/*www  .  j a va2s  . c o  m*/
     * bytewise xor of two arrays
     * @param a
     * @param b
     * @return
     */
    public static byte[] xor(byte[] a, byte[] b) {
        byte[] c = new byte[Math.min(a.length, b.length)];
        for (int i = 0; i < c.length; i++) {
            c[i] = (byte) (a[i] ^ b[i]);
        }
        return c;
    }
}

Related

  1. xor(boolean[][] b1, boolean[][] b2)
  2. xor(byte abyte0[])
  3. xor(byte data[], byte key[])
  4. xor(byte lhs[], byte rhs[])
  5. xor(byte[] a, byte[] b)
  6. xor(byte[] a, byte[] b)
  7. xor(byte[] a, byte[] b)
  8. xor(byte[] a, byte[] b)
  9. xor(byte[] a, byte[] b)