Package org.jasypt.salt
-
Interface Summary Interface Description FixedSaltGenerator Marker interface for all implementations ofSaltGenerator
that will always return the same salt (for the same amount of bytes asked).SaltGenerator Common interface for all salt generators which can be applied in digest or encryption operations. -
Class Summary Class Description ByteArrayFixedSaltGenerator Byte-array based implementation ofFixedSaltGenerator
, that will always return the same salt.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.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.RandomSaltGenerator This implementation ofSaltGenerator
holds a secure random generator which can be used for generating random salts for encryption or digesting.StringFixedSaltGenerator String based implementation ofFixedSaltGenerator
, that will always return the same salt.ZeroSaltGenerator This implementation ofSaltGenerator
always returns a salt of the required length, filled with zero bytes.