CSharpRTMP.Core.Protocols.Rtmfp.AESEngine.Compute C# (CSharp) Method

Compute() public static method

public static Compute ( byte ary ) : byte
ary byte
return byte
        public static byte Compute(byte[] ary)
        {
            return ary.Aggregate<byte, byte>(0, (current, t) => (byte) (current ^ t));
        }
    }