public static void Negate(uint[] x, uint[] z) { if (Nat224.IsZero(x)) { Nat224.Zero(z); } else { Nat224.Sub(P, x, z); } }