RijndaelCreateDecryptor Method |
Returns cryptographic stream which can be used to decrypt data.
Namespace:
TreeksLicensingLibrary2
Assembly:
TreeksLicensingLibrary2 (in TreeksLicensingLibrary2.dll) Version: 2.1.8318.42066 (2.1.0.0)
Syntax public CryptoStream CreateDecryptor(
string Passphrase,
ref Stream OutputStream
)
Public Function CreateDecryptor (
Passphrase As String,
ByRef OutputStream As Stream
) As CryptoStream
public:
CryptoStream^ CreateDecryptor(
String^ Passphrase,
Stream^% OutputStream
)
member CreateDecryptor :
Passphrase : string *
OutputStream : Stream byref -> CryptoStream
Parameters
- Passphrase
- Type: SystemString
Encryption password - OutputStream
- Type: System.IOStream
Output stream used to store decrypted data
Return Value
Type:
CryptoStreamCryptographic stream which can be used to decrypt data.
Remarks OutputStream can be i.e. FileStream or MemoryStream. Use this function to decrypt data in chunks.
See Also