コード例 #1
0
ファイル: BigNumber.cs プロジェクト: tatmanblue/IndyDotNet
        /// <summary>
        /// Clears the BigNum from memory
        /// </summary>
        public void Clear()
        {
            if (fDisposed)
            {
                throw new ObjectDisposedException("this");
            }

            OpenSSL.BN_clear(fBigNum);
        }