You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
582 B

using System;
using Org.BouncyCastle.Math.EC.Multiplier;
namespace Org.BouncyCastle.Math.EC.Endo
{
public class EndoPreCompInfo
: PreCompInfo
{
protected ECEndomorphism m_endomorphism;
protected ECPoint m_mappedPoint;
public virtual ECEndomorphism Endomorphism
{
get { return m_endomorphism; }
set { this.m_endomorphism = value; }
}
public virtual ECPoint MappedPoint
{
get { return m_mappedPoint; }
set { this.m_mappedPoint = value; }
}
}
}