Java xor xor(byte[] block, byte[] val)

Here you can find the source of xor(byte[] block, byte[] val)

Description

xor

License

Apache License

Declaration

static void xor(byte[] block, byte[] val) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    static void xor(byte[] block, byte[] val) {
        for (int i = 15; i >= 0; --i) {
            block[i] ^= val[i];
        }/*  w  ww.  j av a2s  . c  om*/
    }

    static void xor(int[] block, int[] val) {
        for (int i = 3; i >= 0; --i) {
            block[i] ^= val[i];
        }
    }
}

Related

  1. xor(byte[] aBuffer, int aOffset, int aLength, byte[] aMask, int aMaskOffset)
  2. xor(byte[] array1, byte[] array2)
  3. XOR(byte[] array1, byte[] array2)
  4. xor(byte[] b1, byte[] b2)
  5. xor(byte[] b1, byte[] b2)
  6. xor(byte[] block, byte[] val)
  7. xor(byte[] bytes, int offset, byte[] bytesToMix, int mixOffset, int len)
  8. xor(byte[] bytes1, byte[] bytes2)
  9. xor(byte[] data, byte[] xork)