PdfEncryptionLevel Enum
Lists the algorithms that can be used to encrypt PDF data.
Namespace: DevExpress.XtraPrinting
Assembly: DevExpress.Printing.v24.1.Core.dll
NuGet Package: DevExpress.Printing.Core
Declaration
[ResourceFinder(typeof(ResFinder))]
[TypeConverter(typeof(EnumTypeConverter))]
public enum PdfEncryptionLevel
Members
Name | Description |
---|---|
AES128
|
Specifies the 128-bit AES (Advanced Encryption Standard) encryption algorithm. |
AES256
|
Specifies the 256-bit AES (Advanced Encryption Standard) encryption algorithm. |
ARC4
|
Specifies the 128-bit ARC4 (Alleged Rivest Cipher 4) encryption algorithm. |
Related API Members
The following properties accept/return PdfEncryptionLevel values:
Remarks
A PdfEncryptionLevel enumeration value is returned by the PdfPasswordSecurityOptions.EncryptionLevel property.
See Also