WTauNafPreCompInfo.cs 894 B

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