Java xor xor(final byte[] inputByteArray, final byte timeByte)

Here you can find the source of xor(final byte[] inputByteArray, final byte timeByte)

Description

xor

License

Open Source License

Declaration

protected static byte[] xor(final byte[] inputByteArray, final byte timeByte) 

Method Source Code

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

public class Main {
    protected static byte[] xor(final byte[] inputByteArray, final byte timeByte) {

        byte[] outputByteArray = new byte[inputByteArray.length];

        for (int intCount = 0; intCount < inputByteArray.length; intCount++) {
            outputByteArray[intCount] = (byte) (inputByteArray[intCount] ^ timeByte);
        }/*w ww.j  ava2s  .  co  m*/

        return outputByteArray;

    }
}

Related

  1. xor(final boolean x, final boolean y)
  2. xor(final byte[] bytesA, final byte[] bytesB)
  3. xor(final byte[] hash, final byte[] input)
  4. xor(final byte[] hash, final byte[] input)
  5. xor(final byte[] input, final byte[] secret)
  6. xor(int n1, int n2)
  7. XOR(int res, String key)
  8. xor(int[] byteOne, int[] byteTwo)
  9. xor(int[] byteOne, int[] byteTwo)