BraintreeEncryption.Library.BouncyCastle.Crypto.Digests.Sha256Digest.Theta0 C# (CSharp) Method

Theta0() private static method

private static Theta0 ( uint x ) : uint
x uint
return uint
        private static uint Theta0(
            uint x)
        {
            return ((x >> 7) | (x << 25)) ^ ((x >> 18) | (x << 14)) ^ (x >> 3);
        }