CryptoAlgorithm

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

FieldDescription
RC4x40RC4 with key length 40.
RC4x128RC4 with key length 128.
AESx128AES with key length 128.
AESx256AES with key length 256.
values

Methods

MethodDescription
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:

ParameterTypeDescription
namejava.lang.String

Returns: CryptoAlgorithm

getValue()

public int getValue()

Returns: int

prev()

public CryptoAlgorithm prev()

Returns: CryptoAlgorithm

next()

public CryptoAlgorithm next()

Returns: CryptoAlgorithm