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

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

private GGG ( 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 GGG(ref uint a, uint b, ref uint c, uint d, uint e, uint x, int s) {
			a += G(b, c, d) + x + 0x7a6d76e9;
			a = ROL(a, s) + e;
			c = ROL(c, 10);
		}
		private void HHH(ref uint a, uint b, ref uint c, uint d, uint e, uint x, int s) {