Xceed .NET Libraries Documentation
Xceed.Zip Assembly / Xceed.Zip Namespace / ZipArchive Class / DefaultEncryptionStrength Property


In This Topic
    DefaultEncryptionStrength Property
    In This Topic
    Gets or sets the default encryption strength (in bits) to use when encrypting files with the WinZipAes encryption method. Possible values are 128, 192 and 256.
    Syntax
    'Declaration
     
    Public Overridable Property DefaultEncryptionStrength As Integer
    'Usage
     
    Dim instance As ZipArchive
    Dim value As Integer
     
    instance.DefaultEncryptionStrength = value
     
    value = instance.DefaultEncryptionStrength
    public virtual int DefaultEncryptionStrength {get; set;}
    Remarks
    The default value is 256. This property only applies if DefaultEncryptionPassword is not empty and DefaultEncryptionMethod is EncryptionMethod.WinZipAes.
    Example
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also