OpenSSL.SCIPHER.Dispose C# (CSharp) Méthode

Dispose() public méthode

public Dispose ( ) : void
Résultat 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;
        }