Goedel.Cryptography.Secret.ArrayXOR C# (CSharp) Method

ArrayXOR() static private method

static private ArrayXOR ( byte Base, byte Mix ) : void
Base byte
Mix byte
return void
        static void ArrayXOR(byte[] Base, byte[] Mix) {
            for (int j = 0; j < Base.Length; j++) {
                Base[j] = (byte)(Base[j] ^ Mix[j]);
                }
            }