Org.BouncyCastle.Crypto.Digests.RipeMD256Digest.FF2 C# (CSharp) Method

FF2() private method

private FF2 ( int a, int b, int c, int d, int x, int s ) : int
a int
b int
c int
d int
x int
s int
return int
        private int FF2(int a, int b, int c, int d, int x, int s)
        {
            return RL(a + F2(b, c, d) + x + unchecked((int)0x6d703ef3), s);
        }