IEncryptionServiceDecrypt(Byte, Int32, Stream) Method |
Decrypts the specified data (using the application's symmetric encryption key) and writes the decrypted bytes to the output stream.
Namespace: Dundas.BI.ServicesAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntaxvoid Decrypt(
byte[] encryptedData,
int offset,
Stream outputStream
)
Sub Decrypt (
encryptedData As Byte(),
offset As Integer,
outputStream As Stream
)
void Decrypt(
array<unsigned char>^ encryptedData,
int offset,
Stream^ outputStream
)
abstract Decrypt :
encryptedData : byte[] *
offset : int *
outputStream : Stream -> unit Parameters
- encryptedData Byte
- The encrypted data.
- offset Int32
- The position in the array at which the encrypted data begins.
- outputStream Stream
- The output stream.
Exceptions
See Also