org.bouncycastle.math.ec.GLVMultiplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-lts8on Show documentation
Show all versions of bcprov-lts8on Show documentation
The Long Term Stable (LTS) Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains the JCA/JCE provider and low-level API for the BC LTS version 2.73.7 for Java 8 and later.
package org.bouncycastle.math.ec;
import java.math.BigInteger;
import org.bouncycastle.math.ec.endo.EndoUtil;
import org.bouncycastle.math.ec.endo.GLVEndomorphism;
public class GLVMultiplier extends AbstractECMultiplier
{
protected final ECCurve curve;
protected final GLVEndomorphism glvEndomorphism;
public GLVMultiplier(ECCurve curve, GLVEndomorphism glvEndomorphism)
{
if (curve == null || curve.getOrder() == null)
{
throw new IllegalArgumentException("Need curve with known group order");
}
this.curve = curve;
this.glvEndomorphism = glvEndomorphism;
}
protected ECPoint multiplyPositive(ECPoint p, BigInteger k)
{
if (!curve.equals(p.getCurve()))
{
throw new IllegalStateException();
}
BigInteger n = p.getCurve().getOrder();
BigInteger[] ab = glvEndomorphism.decomposeScalar(k.mod(n));
BigInteger a = ab[0], b = ab[1];
if (glvEndomorphism.hasEfficientPointMap())
{
return ECAlgorithms.implShamirsTrickWNaf(glvEndomorphism, p, a, b);
}
ECPoint q = EndoUtil.mapPoint(glvEndomorphism, p);
return ECAlgorithms.implShamirsTrickWNaf(p, a, q, b);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy