AaltoTLS.PluginInterface.BulkCipherAlgorithm.CreateDecryptor C# (CSharp) Method

CreateDecryptor() public method

public CreateDecryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
rgbKey byte
rgbIV byte
return ICryptoTransform
        public ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[] rgbIV)
        {
            return CreateDecryptor(rgbKey, rgbIV, new byte[0]);
        }

Same methods

BulkCipherAlgorithm::CreateDecryptor ( byte rgbKey, byte rgbIV, byte additional ) : ICryptoTransform