Exemple #1
0
        /// <summary>
        /// Clears the BigNum from memory
        /// </summary>
        public void Clear()
        {
            if (fDisposed)
            {
                throw new ObjectDisposedException("this");
            }

            OpenSSL.BN_clear(fBigNum);
        }