C# Класс Keyczar.Util.NondestructiveCryptoStream

Crypto Stream that doesn't close the underlying stream when disposed
Наследование: System.Security.Cryptography.CryptoStream
Показать файл Открыть проект

Открытые методы

Метод Описание
NondestructiveCryptoStream ( Stream stream, ICryptoTransform transform, CryptoStreamMode mode ) : System

Initializes a new instance of the NondestructiveCryptoStream class.

Защищенные методы

Метод Описание
Dispose ( bool disposing ) : void

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

Описание методов

Dispose() защищенный Метод

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.
Результат void

NondestructiveCryptoStream() публичный Метод

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.
Результат System