System.Security.Cryptography.RIPEMD160Managed.JJ C# (CSharp) Метод

JJ() приватный Метод

private JJ ( uint &a, uint b, uint &c, uint d, uint e, uint x, int s ) : void
a uint
b uint
c uint
d uint
e uint
x uint
s int
Результат void
		private void JJ(ref uint a, uint b, ref uint c, uint d, uint e, uint x, int s) {
			a += J(b, c, d) + x + 0xa953fd4e;
			a = ROL(a, s) + e;
			c = ROL(c, 10);
		}
		private void FFF(ref uint a, uint b, ref uint c, uint d, uint e, uint x, int s) {