org.testifyproject.bouncycastle.math.ec.WTauNafPreCompInfo Maven / Gradle / Ivy
The newest version!
package org.testifyproject.bouncycastle.math.ec;
/**
* Class holding precomputation data for the WTNAF (Window
* τ
-adic Non-Adjacent Form) algorithm.
*/
public class WTauNafPreCompInfo implements PreCompInfo
{
/**
* Array holding the precomputed ECPoint.F2m
s used for the
* WTNAF multiplication in
* {@link org.testifyproject.bouncycastle.math.ec.multiplier.WTauNafMultiplier.multiply()
* WTauNafMultiplier.multiply()}
.
*/
protected ECPoint.F2m[] preComp = null;
public ECPoint.F2m[] getPreComp()
{
return preComp;
}
public void setPreComp(ECPoint.F2m[] preComp)
{
this.preComp = preComp;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy