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

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

private HH ( 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 HH(ref uint a, uint b, ref uint c, uint d, uint e, uint x, int s) {
			a += H(b, c, d) + x + 0x6ed9eba1;
			a = ROL(a, s) + e;
			c = ROL(c, 10);
		}
		private void II(ref uint a, uint b, ref uint c, uint d, uint e, uint x, int s) {