org.bouncycastle.math.ec.NafL2RMultiplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-crypto Show documentation
Show all versions of gwt-crypto Show documentation
A GWT cryptography library ported from Legion of the Bouncy Castle.
The newest version!
package org.bouncycastle.math.ec;
import java.math.BigInteger;
/**
* Class implementing the NAF (Non-Adjacent Form) multiplication algorithm (left-to-right).
*/
public class NafL2RMultiplier extends AbstractECMultiplier
{
protected ECPoint multiplyPositive(ECPoint p, BigInteger k)
{
int[] naf = WNafUtil.generateCompactNaf(k);
ECPoint addP = p.normalize(), subP = addP.negate();
ECPoint R = p.getCurve().getInfinity();
int i = naf.length;
while (--i >= 0)
{
int ni = naf[i];
int digit = ni >> 16, zeroes = ni & 0xFFFF;
R = R.twicePlus(digit < 0 ? subP : addP);
R = R.timesPow2(zeroes);
}
return R;
}
}