C# Class Keyczar.Util.NondestructiveCryptoStream

Crypto Stream that doesn't close the underlying stream when disposed
Inheritance: System.Security.Cryptography.CryptoStream
Afficher le fichier Open project: jbtule/keyczar-dotnet

Méthodes publiques

Méthode Description
NondestructiveCryptoStream ( Stream stream, ICryptoTransform transform, CryptoStreamMode mode ) : System

Initializes a new instance of the NondestructiveCryptoStream class.

Méthodes protégées

Méthode 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 méthode

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.
Résultat void

NondestructiveCryptoStream() public méthode

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.
Résultat System