1234567891011121314151617181920212223242526272829303132333435363738 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- namespace Org.BouncyCastle.Math.EC.Multiplier
- {
- /**
- * Class holding precomputation data for fixed-point multiplications.
- */
- public class FixedPointPreCompInfo
- : PreCompInfo
- {
- /**
- * Array holding the precomputed <code>ECPoint</code>s used for a fixed
- * point multiplication.
- */
- protected ECPoint[] m_preComp = null;
- /**
- * The width used for the precomputation. If a larger width precomputation
- * is already available this may be larger than was requested, so calling
- * code should refer to the actual width.
- */
- protected int m_width = -1;
- public virtual ECPoint[] PreComp
- {
- get { return m_preComp; }
- set { this.m_preComp = value; }
- }
- public virtual int Width
- {
- get { return m_width; }
- set { this.m_width = value; }
- }
- }
- }
- #endif
|