OpenSSL.SCIPHER.Dispose C# (CSharp) Method

Dispose() public method

public Dispose ( ) : void
return void
        public void Dispose()
        {
            if (this._handle != null) {
                _CIPHER.EVP_CIPHER_CTX_cleanup(this._handle);
                _CIPHER.EVP_CIPHER_CTX_free(this._handle);
            }
            this._handle = null;
        }