Class ParameterNaming
Constant names of the parameters that can be used by a jasypt type's typedef declaration in a Hibernate mapping.
- Since:
- 1.9.0
- Author:
- Chus Picos
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe encryption algorithm.static final StringThe scale (numbers after the decimal point) to be used when storing decimal numbers.static final StringThe registered name of an encryptor previously registered at theHibernatePBEEncryptorRegistry.static final StringThe number of hashing iterations to be applied for obtaining the encryption key.static final StringThe encryption password.static final StringThe name of the JCE security provider we want to get the algorithm from (if it is no the default one.static final StringWhether the calendar time zone should be stored with the date or not.static final StringThe type of String output ("base64" (default), "hexadecimal") to be generated. -
Method Summary
-
Field Details
-
ENCRYPTOR_NAME
The registered name of an encryptor previously registered at the
HibernatePBEEncryptorRegistry.Value = encryptorRegisteredName
- See Also:
-
ALGORITHM
The encryption algorithm.
Value = algorithm
- See Also:
-
PROVIDER_NAME
The name of the JCE security provider we want to get the algorithm from (if it is no the default one.
Value = providerName
- See Also:
-
PASSWORD
The encryption password.
Value = password
- See Also:
-
KEY_OBTENTION_ITERATIONS
The number of hashing iterations to be applied for obtaining the encryption key.
Value = keyObtentionIterations
- See Also:
-
STRING_OUTPUT_TYPE
The type of String output ("base64" (default), "hexadecimal") to be generated.
Value = stringOutputType
- See Also:
-
DECIMAL_SCALE
The scale (numbers after the decimal point) to be used when storing decimal numbers.
Value = decimalScale
- See Also:
-
STORE_TIME_ZONE
Whether the calendar time zone should be stored with the date or not.
Value = storeTimeZone
- See Also:
-