Org.BouncyCastle.Math.EC.F2mCurve.GetSi C# (CSharp) Method

GetSi() private method

private GetSi ( ) : BigInteger[]
return BigInteger[]
		internal BigInteger[] GetSi()
		{
			if (si == null)
			{
				lock (this)
				{
					if (si == null)
					{
						si = Tnaf.GetSi(this);
					}
				}
			}
			return si;
		}