CryptoAlgorithm
Contents
[
Hide
]Inheritance: java.lang.Object, java.lang.Enum
public enum CryptoAlgorithm extends Enum<CryptoAlgorithm>
Represent type of cryptographic algorithm that used in encryption/decryption routines.
Fields
Field | Description |
---|---|
RC4x40 | RC4 with key length 40. |
RC4x128 | RC4 with key length 128. |
AESx128 | AES with key length 128. |
AESx256 | AES with key length 256. |
values |
Methods
Method | Description |
---|---|
values() | |
valueOf(String name) | |
getValue() | |
prev() | |
next() |
RC4x40
public static final CryptoAlgorithm RC4x40
RC4 with key length 40.
RC4x128
public static final CryptoAlgorithm RC4x128
RC4 with key length 128.
AESx128
public static final CryptoAlgorithm AESx128
AES with key length 128.
AESx256
public static final CryptoAlgorithm AESx256
AES with key length 256.
values
public static final CryptoAlgorithm[] values
values()
public static CryptoAlgorithm[] values()
Returns: com.aspose.pdf.CryptoAlgorithm[]
valueOf(String name)
public static CryptoAlgorithm valueOf(String name)
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String |
Returns: CryptoAlgorithm
getValue()
public int getValue()
Returns: int
prev()
public CryptoAlgorithm prev()
Returns: CryptoAlgorithm
next()
public CryptoAlgorithm next()
Returns: CryptoAlgorithm