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
Methods in org.jasypt.digest with parameters of type SaltGenerator Modifier and Type Method Description voidPooledByteDigester. 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 SaltGenerator Modifier and Type Method Description SaltGeneratorDigesterConfig. getSaltGenerator()Returns aSaltGeneratorimplementation to be used by the digester.SaltGeneratorSimpleDigesterConfig. getSaltGenerator()Methods in org.jasypt.digest.config with parameters of type SaltGenerator Modifier and Type Method Description voidEnvironmentDigesterConfig. 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 SaltGenerator Modifier and Type Method Description voidPooledPBEBigDecimalEncryptor. 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 SaltGenerator Modifier and Type Method Description SaltGeneratorPBEConfig. getSaltGenerator()Returns aSaltGeneratorimplementation to be used by the encryptor.SaltGeneratorSimplePBEConfig. getSaltGenerator()Methods in org.jasypt.encryption.pbe.config with parameters of type SaltGenerator Modifier and Type Method Description voidEnvironmentPBEConfig. setSaltGenerator(SaltGenerator saltGenerator)voidSimplePBEConfig. 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 interfaceFixedSaltGeneratorMarker 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 SaltGenerator Modifier and Type Class Description classByteArrayFixedSaltGeneratorByte-array based implementation ofFixedSaltGenerator, that will always return the same salt.classFixedByteArraySaltGeneratorDeprecated.Deprecated in 1.9.2 in favour ofByteArrayFixedSaltGenerator, which implements the newFixedSaltGeneratorinterface and therefore is able to benefit from the performance improvements associated with it.classFixedStringSaltGeneratorDeprecated.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.classRandomSaltGeneratorThis implementation ofSaltGeneratorholds a secure random generator which can be used for generating random salts for encryption or digesting.classStringFixedSaltGeneratorString based implementation ofFixedSaltGenerator, that will always return the same salt.classZeroSaltGeneratorThis implementation ofSaltGeneratoralways returns a salt of the required length, filled with zero bytes.
-