Xceed .NET Libraries Documentation
Xceed.Zip Assembly / Xceed.Zip.ReaderWriter Namespace / ZipReader Class / AesAlgorithmManager Property


In This Topic
    AesAlgorithmManager Property (ZipReader)
    In This Topic
    Gets or sets a manager object for the AES encryption functionality.
    Syntax
    'Declaration
     
    Public Property AesAlgorithmManager As IAesAlgorithmManager
    'Usage
     
    Dim instance As ZipReader
    Dim value As IAesAlgorithmManager
     
    instance.AesAlgorithmManager = value
     
    value = instance.AesAlgorithmManager
    public IAesAlgorithmManager AesAlgorithmManager {get; set;}

    Property Value

    An object implementing IAesAlgorithmManager. By default, null.
    Remarks

    When set to null the component will use the System.Security.Cryptography.RijndaelManaged class when encrypting data with EncryptionMethod.WinZipAES.

    This property is for advanced scenarios only. In most if not all cases, the default value is adequate. For more information on how to use this property refer to the Using alternative AES implementations page.

    Alternative AES implementations are not supported by Xceed Zip for .NET CF.

    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