ClassPkzipCryptoProvider
Class
Crypto provider which implements traditional PKWARE encryption.
Definition
Namespace:Telerik.Windows.Zip
Assembly:Telerik.Windows.Zip.dll
Syntax:
cs-api-definition
public class PkzipCryptoProvider : ICryptoProvider
Inheritance: objectPkzipCryptoProvider
Implements:
Constructors
PkzipCryptoProvider()
Initializes a new instance of the PkzipCryptoProvider class. It represents a provider for PKWARE encryption and decryption.
Declaration
cs-api-definition
public PkzipCryptoProvider()
Methods
CreateDecryptor()
Creates an decryptor object.
Declaration
cs-api-definition
public IBlockTransform CreateDecryptor()
Returns
A decryptor object.
Implements
CreateEncryptor()
Creates an encryptor object.
Declaration
cs-api-definition
public IBlockTransform CreateEncryptor()
Returns
Implements
Initialize(EncryptionSettingsBase)
Initialize crypto provider using given encryption settings.
Declaration
cs-api-definition
public void Initialize(EncryptionSettingsBase settings)
Parameters
settings
Encryption settings.
Implements