Open this page in the API Guide

IEncryptionService.Decrypt Method (Byte[], Int32, Stream)

Decrypts the specified data (using the application's symmetric encryption key) and writes the decrypted bytes to the output stream.

Namespace:  Dundas.BI.Services
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
void Decrypt(
	byte[] encryptedData,
	int offset,
	Stream outputStream
)

Parameters

encryptedData
Type:System.Byte[]
The encrypted data.
offset
Type: System.Int32
The position in the array at which the encrypted data begins.
outputStream
Type: System.IO.Stream
The output stream.
Exceptions
ExceptionCondition
ArgumentNullExceptionencryptedData or outputStream is null.
See Also