You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
745 B
24 lines
745 B
namespace Org.BouncyCastle.Math.EC.Multiplier
|
|
{
|
|
/**
|
|
* Class holding precomputation data for the WTNAF (Window
|
|
* <code>τ</code>-adic Non-Adjacent Form) algorithm.
|
|
*/
|
|
public class WTauNafPreCompInfo
|
|
: PreCompInfo
|
|
{
|
|
/**
|
|
* Array holding the precomputed <code>AbstractF2mPoint</code>s used for the
|
|
* WTNAF multiplication in <code>
|
|
* {@link org.bouncycastle.math.ec.multiplier.WTauNafMultiplier.multiply()
|
|
* WTauNafMultiplier.multiply()}</code>.
|
|
*/
|
|
protected AbstractF2mPoint[] m_preComp;
|
|
|
|
public virtual AbstractF2mPoint[] PreComp
|
|
{
|
|
get { return m_preComp; }
|
|
set { this.m_preComp = value; }
|
|
}
|
|
}
|
|
}
|
|
|