public final class ParameterNaming extends Object
Constant names of the parameters that can be used by a jasypt type's typedef declaration in a Hibernate mapping.
Modifier and Type | Field and Description |
---|---|
static String |
ALGORITHM
The encryption algorithm.
|
static String |
DECIMAL_SCALE
The scale (numbers after the decimal point) to be used when storing
decimal numbers.
|
static String |
ENCRYPTOR_NAME
The registered name of an encryptor previously registered at the
HibernatePBEEncryptorRegistry . |
static String |
KEY_OBTENTION_ITERATIONS
The number of hashing iterations to be applied for obtaining the
encryption key.
|
static String |
PASSWORD
The encryption password.
|
static String |
PROVIDER_NAME
The name of the JCE security provider we want to get the algorithm from
(if it is no the default one.
|
static String |
STORE_TIME_ZONE
Whether the calendar time zone should be stored with the date or not.
|
static String |
STRING_OUTPUT_TYPE
The type of String output ("base64" (default), "hexadecimal") to be
generated.
|
public static final String ENCRYPTOR_NAME
The registered name of an encryptor previously registered at the
HibernatePBEEncryptorRegistry
.
Value = encryptorRegisteredName
public static final String ALGORITHM
The encryption algorithm.
Value = algorithm
public static final String 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
public static final String PASSWORD
The encryption password.
Value = password
public static final String KEY_OBTENTION_ITERATIONS
The number of hashing iterations to be applied for obtaining the encryption key.
Value = keyObtentionIterations
public static final String STRING_OUTPUT_TYPE
The type of String output ("base64" (default), "hexadecimal") to be generated.
Value = stringOutputType
public static final String DECIMAL_SCALE
The scale (numbers after the decimal point) to be used when storing decimal numbers.
Value = decimalScale
public static final String STORE_TIME_ZONE
Whether the calendar time zone should be stored with the date or not.
Value = storeTimeZone
Copyright © 2014 The JASYPT team. All rights reserved.