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

ArrayXOR1() static private method

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