Org.BouncyCastle.Crypto.Digests.RipeMD128Digest.F4(int, int, int)

Here are the examples of the csharp api class Org.BouncyCastle.Crypto.Digests.RipeMD128Digest.F4(int, int, int) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

8 Examples 7

1. Example

Project: OutlookPrivacyPlugin
Source File: RipeMD128Digest.cs
private int F4(
            int a,
            int b,
            int c,
            int d,
            int x,
            int s)
        {
            return RL(a + F4(b, c, d) + x + unchecked((int) 0x8f1bbcdc), s);
        }

2. Example

Project: OutlookPrivacyPlugin
Source File: RipeMD128Digest.cs
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);
        }

3. Example

Project: Unity-ImageLoader
Source File: RipeMD128Digest.cs
private int F4(
            int a,
            int b,
            int c,
            int d,
            int x,
            int s)
        {
            return RL(a + F4(b, c, d) + x + unchecked((int) 0x8f1bbcdc), s);
        }

4. Example

Project: Unity-ImageLoader
Source File: RipeMD128Digest.cs
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);
        }

5. Example

Project: Netcode.IO.NET
Source File: RipeMD128Digest.cs
private int F4(
            int a,
            int b,
            int c,
            int d,
            int x,
            int s)
        {
            return RL(a + F4(b, c, d) + x + unchecked((int) 0x8f1bbcdc), s);
        }

6. Example

Project: Netcode.IO.NET
Source File: RipeMD128Digest.cs
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);
        }

7. Example

Project: cms
Source File: RipeMD128Digest.cs
private int F4(
            int a,
            int b,
            int c,
            int d,
            int x,
            int s)
        {
            return RL(a + F4(b, c, d) + x + unchecked((int) 0x8f1bbcdc), s);
        }

8. Example

Project: cms
Source File: RipeMD128Digest.cs
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);
        }