namespace Org.BouncyCastle.Math.EC.Multiplier { /** * Class holding precomputation data for the WTNAF (Window * τ-adic Non-Adjacent Form) algorithm. */ public class WTauNafPreCompInfo : PreCompInfo { /** * Array holding the precomputed F2mPoints used for the * WTNAF multiplication in * {@link org.bouncycastle.math.ec.multiplier.WTauNafMultiplier.multiply() * WTauNafMultiplier.multiply()}. */ protected F2mPoint[] m_preComp; public virtual F2mPoint[] PreComp { get { return m_preComp; } set { this.m_preComp = value; } } } }