NSoft.NFramework.Cryptography.Aria.AriaEngine.Dcba C# (CSharp) Method

Dcba() private static method

private static Dcba ( long t ) : long
t long
return long
        private static long Dcba(long t) {
            return (t & 0x000000ff) << 24 ^ (t & 0x0000ff00) << 8 ^ (t & 0x00ff0000) >> 8 ^ (t & 0xff000000) >> 24;
        }