- All Implemented Interfaces:
Serializable,Comparable<CryptorProvider.Scheme>
- Enclosing interface:
CryptorProvider
A combination of ciphers to use for filename and file content encryption
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAES-SIV for file name encryption AES-CTR + HMAC for content encryptionAES-SIV for file name encryption AES-GCM for content encryption -
Method Summary
Modifier and TypeMethodDescriptionstatic CryptorProvider.SchemeReturns the enum constant of this type with the specified name.static CryptorProvider.Scheme[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SIV_CTRMAC
AES-SIV for file name encryption AES-CTR + HMAC for content encryption -
SIV_GCM
AES-SIV for file name encryption AES-GCM for content encryption
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-