Interface ICryptoProvider
Interface which provides method to encrypt/decrypt data in the ZIP archive.
Namespace: Telerik.Windows.Zip
Assembly: Telerik.Windows.Zip.dll
Syntax
public interface ICryptoProvider
Methods
CreateDecryptor()
Creates an decryptor object.
Declaration
IBlockTransform CreateDecryptor()
Returns
IBlockTransform
A decryptor object. |
CreateEncryptor()
Creates an encryptor object.
Declaration
IBlockTransform CreateEncryptor()
Returns
IBlockTransform
An encryptor object. |
Initialize(EncryptionSettingsBase)
Initialize crypto provider using given encryption settings.
Declaration
void Initialize(EncryptionSettingsBase settings)
Parameters
EncryptionSettingsBase
settings
Encryption settings. |