NBitcoin.BouncyCastle.Math.EC.ECCurve.CreatePoint C# (CSharp) Method

CreatePoint() public method

public CreatePoint ( BigInteger x, BigInteger y ) : NBitcoin.BouncyCastle.Math.EC.ECPoint
x BigInteger
y BigInteger
return NBitcoin.BouncyCastle.Math.EC.ECPoint
		public virtual ECPoint CreatePoint(BigInteger x, BigInteger y)
		{
			return CreatePoint(x, y, false);
		}

Same methods

ECCurve::CreatePoint ( BigInteger x, BigInteger y, bool withCompression ) : NBitcoin.BouncyCastle.Math.EC.ECPoint