Uses of Interface
org.jasypt.salt.SaltGenerator
Packages that use SaltGenerator
Package
Description
-
Uses of SaltGenerator in org.jasypt.digest
Methods in org.jasypt.digest with parameters of type SaltGeneratorModifier and TypeMethodDescriptionvoidPooledByteDigester.setSaltGenerator(SaltGenerator saltGenerator) Sets the salt generator to be used.voidPooledStringDigester.setSaltGenerator(SaltGenerator saltGenerator) Sets the salt generator to be used.voidStandardByteDigester.setSaltGenerator(SaltGenerator saltGenerator) Sets the salt generator to be used.voidStandardStringDigester.setSaltGenerator(SaltGenerator saltGenerator) Sets the salt generator to be used. -
Uses of SaltGenerator in org.jasypt.digest.config
Methods in org.jasypt.digest.config that return SaltGeneratorModifier and TypeMethodDescriptionDigesterConfig.getSaltGenerator()Returns aSaltGeneratorimplementation to be used by the digester.SimpleDigesterConfig.getSaltGenerator()Methods in org.jasypt.digest.config with parameters of type SaltGeneratorModifier and TypeMethodDescriptionvoidEnvironmentDigesterConfig.setSaltGenerator(SaltGenerator saltGenerator) voidSimpleDigesterConfig.setSaltGenerator(SaltGenerator saltGenerator) Sets the salt generator. -
Uses of SaltGenerator in org.jasypt.encryption.pbe
Methods in org.jasypt.encryption.pbe with parameters of type SaltGeneratorModifier and TypeMethodDescriptionvoidPooledPBEBigDecimalEncryptor.setSaltGenerator(SaltGenerator saltGenerator) Sets the salt generator to be used.voidPooledPBEBigIntegerEncryptor.setSaltGenerator(SaltGenerator saltGenerator) Sets the salt generator to be used.voidPooledPBEByteEncryptor.setSaltGenerator(SaltGenerator saltGenerator) Sets the salt generator to be used.voidPooledPBEStringEncryptor.setSaltGenerator(SaltGenerator saltGenerator) Sets the salt generator to be used.voidStandardPBEBigDecimalEncryptor.setSaltGenerator(SaltGenerator saltGenerator) Sets the salt generator to be used.voidStandardPBEBigIntegerEncryptor.setSaltGenerator(SaltGenerator saltGenerator) Sets the salt generator to be used.voidStandardPBEByteEncryptor.setSaltGenerator(SaltGenerator saltGenerator) Sets the salt generator to be used.voidStandardPBEStringEncryptor.setSaltGenerator(SaltGenerator saltGenerator) Sets the salt generator to be used. -
Uses of SaltGenerator in org.jasypt.encryption.pbe.config
Methods in org.jasypt.encryption.pbe.config that return SaltGeneratorModifier and TypeMethodDescriptionPBEConfig.getSaltGenerator()Returns aSaltGeneratorimplementation to be used by the encryptor.SimplePBEConfig.getSaltGenerator()Methods in org.jasypt.encryption.pbe.config with parameters of type SaltGeneratorModifier and TypeMethodDescriptionvoidEnvironmentPBEConfig.setSaltGenerator(SaltGenerator saltGenerator) voidSimplePBEConfig.setSaltGenerator(SaltGenerator saltGenerator) Sets the salt generator. -
Uses of SaltGenerator in org.jasypt.salt
Subinterfaces of SaltGenerator in org.jasypt.saltModifier and TypeInterfaceDescriptioninterfaceMarker interface for all implementations ofSaltGeneratorthat will always return the same salt (for the same amount of bytes asked).Classes in org.jasypt.salt that implement SaltGeneratorModifier and TypeClassDescriptionclassByte-array based implementation ofFixedSaltGenerator, that will always return the same salt.classDeprecated.classDeprecated.Deprecated in 1.9.2 in favour ofStringFixedSaltGenerator, which implements the newFixedSaltGeneratorinterface and therefore is able to benefit from the performance improvements associated with it.classThis implementation ofSaltGeneratorholds a secure random generator which can be used for generating random salts for encryption or digesting.classString based implementation ofFixedSaltGenerator, that will always return the same salt.classThis implementation ofSaltGeneratoralways returns a salt of the required length, filled with zero bytes.
ByteArrayFixedSaltGenerator, which implements the newFixedSaltGeneratorinterface and therefore is able to benefit from the performance improvements associated with it.