NSoft.NFramework.Cryptography.Aria.AriaEngine.Dcba C# (CSharp) 메소드

Dcba() 개인적인 정적인 메소드

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