Mono.Math.BigInteger.Montgomery.Inverse C# (CSharp) Méthode

Inverse() public static méthode

public static Inverse ( uint n ) : uint
n uint
Résultat uint
			public static uint Inverse (uint n)
			{
				uint y = n, z;

				while ((z = n * y) != 1)
					y *= 2 - z;

				return (uint)-y;
			}
BigInteger.Montgomery