Org.BouncyCastle.Crypto.Digests.RipeMD128Digest.FF4 C# (CSharp) Method

FF4() private method

private FF4 ( 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 FF4(
            int a,
            int b,
            int c,
            int d,
            int x,
            int s)
        {
        return RL(a + F4(b, c, d) + x + unchecked((int) 0x50a28be6), s);
        }