StreamExtensionsDecrypt Method

Overload List

Decrypt(Stream, Stream, Byte, Byte) Decrypts a source stream by the Aes algorithm using the provided key and initialization vector, and writes the decrypted result to the destination stream. Both streams remain open after the decryption is done.
Decrypt(Stream, Stream, String, Byte) Decrypts a source stream by the Aes algorithm using the provided password and salt, and writes the decrypted result to the destination stream. Both streams remain open after the decryption is done.
Decrypt(Stream, Stream, SymmetricAlgorithm, Byte, Byte) Decrypts a source stream by the provided symmetric algorithm, key and initialization vector, and writes the decrypted result to the destination stream. Both streams remain open after the decryption is done.
Decrypt(Stream, Stream, SymmetricAlgorithm, String, Byte) Decrypts a source stream by the provided symmetric algorithm, password and salt, and writes the decrypted result to the destination stream. Both streams remain open after the decryption is done.

See Also