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

Theta1() private static method

private static Theta1 ( uint x ) : uint
x uint
return uint
        private static uint Theta1(
            uint x)
        {
            return ((x >> 17) | (x << 15)) ^ ((x >> 19) | (x << 13)) ^ (x >> 10);
        }