C# Класс ICSharpCode.SharpZipLib.Encryption.PkzipClassicManaged

Defines a wrapper object to access the Pkzip algorithm. This class cannot be inherited.
Наследование: PkzipClassic
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
CreateDecryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform

Create a decryptor.

CreateEncryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform

Create an encryptor.

GenerateIV ( ) : void

Generate an initial vector.

GenerateKey ( ) : void

Generate a new random key.

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

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

Create a decryptor.
public CreateDecryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
rgbKey byte Keys to use for this new decryptor.
rgbIV byte Initialisation vector for the new decryptor.
Результат ICryptoTransform

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

Create an encryptor.
public CreateEncryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
rgbKey byte The key to use for this encryptor.
rgbIV byte Initialisation vector for the new encryptor.
Результат ICryptoTransform

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

Generate an initial vector.
public GenerateIV ( ) : void
Результат void

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

Generate a new random key.
public GenerateKey ( ) : void
Результат void