WTauNafPreCompInfo.cs 824 B

12345678910111213141516171819202122232425262728
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. namespace Org.BouncyCastle.Math.EC.Multiplier
  3. {
  4. /**
  5. * Class holding precomputation data for the WTNAF (Window
  6. * <code>&#964;</code>-adic Non-Adjacent Form) algorithm.
  7. */
  8. public class WTauNafPreCompInfo
  9. : PreCompInfo
  10. {
  11. /**
  12. * Array holding the precomputed <code>AbstractF2mPoint</code>s used for the
  13. * WTNAF multiplication in <code>
  14. * {@link org.bouncycastle.math.ec.multiplier.WTauNafMultiplier.multiply()
  15. * WTauNafMultiplier.multiply()}</code>.
  16. */
  17. protected AbstractF2mPoint[] m_preComp;
  18. public virtual AbstractF2mPoint[] PreComp
  19. {
  20. get { return m_preComp; }
  21. set { this.m_preComp = value; }
  22. }
  23. }
  24. }
  25. #endif