Org.BouncyCastle.Math.EC.F2mCurve.CreatePoint C# (CSharp) Метод

CreatePoint() публичный Метод

public CreatePoint ( BigInteger X1, BigInteger Y1, bool withCompression ) : ECPoint
X1 BigInteger
Y1 BigInteger
withCompression bool
Результат ECPoint
		public override ECPoint CreatePoint(
			BigInteger	X1,
			BigInteger	Y1,
			bool		withCompression)
		{
			// TODO Validation of X1, Y1?
			return new F2mPoint(
				this,
				FromBigInteger(X1),
				FromBigInteger(Y1),
				withCompression);
		}