Пример #1
0
 public static void SingleRound(ref uint x, ref uint y, uint z, int count)
 {
     y = Operations.RotateLeft((y ^ (x += z)), count);
 }