Skip to main content
All docs
V26.1
  • SecureZipPolicy.EncryptionPolicy Enum

    Lists encryption policy modes that control which encryption algorithms are permitted for reading and writing ZIP archives.

    Namespace: DevExpress.Utils.Zip

    Assembly: DevExpress.Data.v26.1.dll

    Declaration

    public enum EncryptionPolicy

    Members

    Name Description
    Default

    Resolves to ReadLegacyOnly when the OS does not enforce FIPS, and to FipsStrict when FIPS is enforced.

    Unrestricted

    Obsolete. ZipCrypto and AES are both permitted for reading and writing.

    AesRequired

    ZipCrypto is denied for both reading and writing. AES encryption is required. Algorithms of unknown compliance are also permitted.

    ReadLegacyOnly

    ZipCrypto is allowed for reading existing archives only. Writing always uses AES.

    FipsStrict

    Only FIPS 140-2 confirmed algorithms are accepted for both reading and writing. Algorithms of unknown compliance are denied.

    Related API Members

    The following properties accept/return SecureZipPolicy.EncryptionPolicy values:

    See Also