Uses of Interface
org.jasypt.salt.SaltGenerator
Packages that use SaltGenerator
Package
Description
-
Uses of SaltGenerator in org.jasypt.digest
Fields in org.jasypt.digest declared as SaltGeneratorMethods in org.jasypt.digest with parameters of type SaltGeneratorModifier and TypeMethodDescriptionvoid
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 SaltGeneratorMethods in org.jasypt.digest.config that return SaltGeneratorModifier and TypeMethodDescriptionDigesterConfig.getSaltGenerator()
Returns aSaltGenerator
implementation to be used by the digester.SimpleDigesterConfig.getSaltGenerator()
Methods in org.jasypt.digest.config with parameters of type SaltGeneratorModifier and TypeMethodDescriptionvoid
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 SaltGeneratorMethods in org.jasypt.encryption.pbe with parameters of type SaltGeneratorModifier and TypeMethodDescriptionvoid
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 SaltGeneratorMethods in org.jasypt.encryption.pbe.config that return SaltGeneratorModifier and TypeMethodDescriptionPBEConfig.getSaltGenerator()
Returns aSaltGenerator
implementation to be used by the encryptor.SimplePBEConfig.getSaltGenerator()
Methods in org.jasypt.encryption.pbe.config with parameters of type SaltGeneratorModifier and TypeMethodDescriptionvoid
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.saltModifier and TypeInterfaceDescriptioninterface
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 SaltGeneratorModifier and TypeClassDescriptionclass
Byte-array based implementation ofFixedSaltGenerator
, that will always return the same salt.class
Deprecated.class
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
This implementation ofSaltGenerator
holds a secure random generator which can be used for generating random salts for encryption or digesting.class
String based implementation ofFixedSaltGenerator
, that will always return the same salt.class
This implementation ofSaltGenerator
always returns a salt of the required length, filled with zero bytes.
ByteArrayFixedSaltGenerator
, which implements the newFixedSaltGenerator
interface and therefore is able to benefit from the performance improvements associated with it.