17 lines
270 B
C#
17 lines
270 B
C#
namespace Org.BouncyCastle.Math.EC;
|
|
|
|
public class ScaleXPointMap : ECPointMap
|
|
{
|
|
protected readonly ECFieldElement scale;
|
|
|
|
public ScaleXPointMap(ECFieldElement scale)
|
|
{
|
|
this.scale = scale;
|
|
}
|
|
|
|
public virtual ECPoint Map(ECPoint p)
|
|
{
|
|
return p.ScaleX(scale);
|
|
}
|
|
}
|