C# Class Keyczar.Util.NondestructiveCryptoStream

Crypto Stream that doesn't close the underlying stream when disposed
Inheritance: System.Security.Cryptography.CryptoStream
ファイルを表示 Open project: jbtule/keyczar-dotnet

Public Methods

Method Description
NondestructiveCryptoStream ( Stream stream, ICryptoTransform transform, CryptoStreamMode mode ) : System

Initializes a new instance of the NondestructiveCryptoStream class.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Releases the unmanaged resources used by the T:System.Security.Cryptography.CryptoStream and optionally releases the managed resources.

Method Details

Dispose() protected method

Releases the unmanaged resources used by the T:System.Security.Cryptography.CryptoStream and optionally releases the managed resources.
protected Dispose ( bool disposing ) : void
disposing bool true to release both managed and unmanaged resources; false to release only unmanaged resources.
return void

NondestructiveCryptoStream() public method

Initializes a new instance of the NondestructiveCryptoStream class.
/// is not readable. /// is not writable. /// is invalid.
public NondestructiveCryptoStream ( Stream stream, ICryptoTransform transform, CryptoStreamMode mode ) : System
stream Stream The stream on which to perform the cryptographic transformation.
transform ICryptoTransform The cryptographic transformation that is to be performed on the stream.
mode CryptoStreamMode One of the values.
return System