TLSharp.Core.MTProto.Crypto.MD5Digest.RotateLeft C# (CSharp) Method

RotateLeft() private method

private RotateLeft ( int x, int n ) : int
x int
n int
return int
        private int RotateLeft(
            int x,
            int n)
        {
            return (x << n) | (int)((uint)x >> (32 - n));
        }