org.bouncycastle.math.ec.ScaleYNegateXPointMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Liferay SAML OpenSAML Integration
package org.bouncycastle.math.ec;
public class ScaleYNegateXPointMap implements ECPointMap
{
protected final ECFieldElement scale;
public ScaleYNegateXPointMap(ECFieldElement scale)
{
this.scale = scale;
}
public ECPoint map(ECPoint p)
{
return p.scaleYNegateX(scale);
}
}