Uses of Interface
org.jasypt.salt.SaltGenerator
-
Packages that use SaltGenerator Package Description org.jasypt.digest org.jasypt.digest.config org.jasypt.encryption.pbe org.jasypt.encryption.pbe.config org.jasypt.salt -
-
Uses of SaltGenerator in org.jasypt.digest
Fields in org.jasypt.digest declared as SaltGenerator Modifier and Type Field Description private SaltGenerator
StandardByteDigester. saltGenerator
Methods in org.jasypt.digest with parameters of type SaltGenerator Modifier and Type Method Description void
PooledByteDigester. setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator to be used.void
PooledStringDigester. setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator to be used.void
StandardByteDigester. setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator to be used.void
StandardStringDigester. setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator to be used. -
Uses of SaltGenerator in org.jasypt.digest.config
Fields in org.jasypt.digest.config declared as SaltGenerator Modifier and Type Field Description private SaltGenerator
SimpleDigesterConfig. saltGenerator
Methods in org.jasypt.digest.config that return SaltGenerator Modifier and Type Method Description SaltGenerator
DigesterConfig. getSaltGenerator()
Returns aSaltGenerator
implementation to be used by the digester.SaltGenerator
SimpleDigesterConfig. getSaltGenerator()
Methods in org.jasypt.digest.config with parameters of type SaltGenerator Modifier and Type Method Description void
EnvironmentDigesterConfig. setSaltGenerator(SaltGenerator saltGenerator)
void
SimpleDigesterConfig. setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator. -
Uses of SaltGenerator in org.jasypt.encryption.pbe
Fields in org.jasypt.encryption.pbe declared as SaltGenerator Modifier and Type Field Description private SaltGenerator
StandardPBEByteEncryptor. saltGenerator
Methods in org.jasypt.encryption.pbe with parameters of type SaltGenerator Modifier and Type Method Description void
PooledPBEBigDecimalEncryptor. setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator to be used.void
PooledPBEBigIntegerEncryptor. setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator to be used.void
PooledPBEByteEncryptor. setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator to be used.void
PooledPBEStringEncryptor. setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator to be used.void
StandardPBEBigDecimalEncryptor. setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator to be used.void
StandardPBEBigIntegerEncryptor. setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator to be used.void
StandardPBEByteEncryptor. setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator to be used.void
StandardPBEStringEncryptor. setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator to be used. -
Uses of SaltGenerator in org.jasypt.encryption.pbe.config
Fields in org.jasypt.encryption.pbe.config declared as SaltGenerator Modifier and Type Field Description private SaltGenerator
SimplePBEConfig. saltGenerator
Methods in org.jasypt.encryption.pbe.config that return SaltGenerator Modifier and Type Method Description SaltGenerator
PBEConfig. getSaltGenerator()
Returns aSaltGenerator
implementation to be used by the encryptor.SaltGenerator
SimplePBEConfig. getSaltGenerator()
Methods in org.jasypt.encryption.pbe.config with parameters of type SaltGenerator Modifier and Type Method Description void
EnvironmentPBEConfig. setSaltGenerator(SaltGenerator saltGenerator)
void
SimplePBEConfig. setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator. -
Uses of SaltGenerator in org.jasypt.salt
Subinterfaces of SaltGenerator in org.jasypt.salt Modifier and Type Interface Description interface
FixedSaltGenerator
Marker interface for all implementations ofSaltGenerator
that will always return the same salt (for the same amount of bytes asked).Classes in org.jasypt.salt that implement SaltGenerator Modifier and Type Class Description class
ByteArrayFixedSaltGenerator
Byte-array based implementation ofFixedSaltGenerator
, that will always return the same salt.class
FixedByteArraySaltGenerator
Deprecated.Deprecated in 1.9.2 in favour ofByteArrayFixedSaltGenerator
, which implements the newFixedSaltGenerator
interface and therefore is able to benefit from the performance improvements associated with it.class
FixedStringSaltGenerator
Deprecated.Deprecated in 1.9.2 in favour ofStringFixedSaltGenerator
, which implements the newFixedSaltGenerator
interface and therefore is able to benefit from the performance improvements associated with it.class
RandomSaltGenerator
This implementation ofSaltGenerator
holds a secure random generator which can be used for generating random salts for encryption or digesting.class
StringFixedSaltGenerator
String based implementation ofFixedSaltGenerator
, that will always return the same salt.class
ZeroSaltGenerator
This implementation ofSaltGenerator
always returns a salt of the required length, filled with zero bytes.
-