Uses of Interface
org.jasypt.salt.SaltGenerator

Packages that use SaltGenerator
org.jasypt.digest   
org.jasypt.digest.config   
org.jasypt.encryption.pbe   
org.jasypt.encryption.pbe.config   
org.jasypt.hibernate.encryptor   
org.jasypt.salt   
 

Uses of SaltGenerator in org.jasypt.digest
 

Methods in org.jasypt.digest with parameters of type SaltGenerator
 void StandardStringDigester.setSaltGenerator(SaltGenerator saltGenerator)
           Sets the salt generator to be used.
 void StandardByteDigester.setSaltGenerator(SaltGenerator saltGenerator)
           Sets the salt generator to be used.
 void PooledStringDigester.setSaltGenerator(SaltGenerator saltGenerator)
           Sets the salt generator to be used.
 void PooledByteDigester.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
 SaltGenerator DigesterConfig.getSaltGenerator()
           Returns a SaltGenerator implementation to be used by the digester.
 SaltGenerator SimpleDigesterConfig.getSaltGenerator()
           
 

Methods in org.jasypt.digest.config with parameters of type SaltGenerator
 void SimpleDigesterConfig.setSaltGenerator(SaltGenerator saltGenerator)
           Sets the salt generator.
 void EnvironmentDigesterConfig.setSaltGenerator(SaltGenerator saltGenerator)
           
 

Uses of SaltGenerator in org.jasypt.encryption.pbe
 

Methods in org.jasypt.encryption.pbe with parameters of type SaltGenerator
 void StandardPBEStringEncryptor.setSaltGenerator(SaltGenerator saltGenerator)
           Sets the salt generator to be used.
 void StandardPBEByteEncryptor.setSaltGenerator(SaltGenerator saltGenerator)
           Sets the salt generator to be used.
 void PooledPBEStringEncryptor.setSaltGenerator(SaltGenerator saltGenerator)
           Sets the salt generator to be used.
 void StandardPBEBigIntegerEncryptor.setSaltGenerator(SaltGenerator saltGenerator)
           Sets the salt generator to be used.
 void PooledPBEByteEncryptor.setSaltGenerator(SaltGenerator saltGenerator)
           Sets the salt generator to be used.
 void StandardPBEBigDecimalEncryptor.setSaltGenerator(SaltGenerator saltGenerator)
           Sets the salt generator to be used.
 void PooledPBEBigDecimalEncryptor.setSaltGenerator(SaltGenerator saltGenerator)
           Sets the salt generator to be used.
 void PooledPBEBigIntegerEncryptor.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
 SaltGenerator PBEConfig.getSaltGenerator()
           Returns a SaltGenerator implementation to be used by the encryptor.
 SaltGenerator SimplePBEConfig.getSaltGenerator()
           
 

Methods in org.jasypt.encryption.pbe.config with parameters of type SaltGenerator
 void SimplePBEConfig.setSaltGenerator(SaltGenerator saltGenerator)
           Sets the salt generator.
 void EnvironmentPBEConfig.setSaltGenerator(SaltGenerator saltGenerator)
           
 

Uses of SaltGenerator in org.jasypt.hibernate.encryptor
 

Methods in org.jasypt.hibernate.encryptor with parameters of type SaltGenerator
 void HibernatePBEStringEncryptor.setSaltGenerator(SaltGenerator saltGenerator)
          Sets the salt generator to be used by the internal encryptor, if a specific encryptor has not been set with setEncryptor(...).
 void HibernatePBEBigIntegerEncryptor.setSaltGenerator(SaltGenerator saltGenerator)
          Sets the salt generator to be used by the internal encryptor, if a specific encryptor has not been set with setEncryptor(...).
 void HibernatePBEBigDecimalEncryptor.setSaltGenerator(SaltGenerator saltGenerator)
          Sets the salt generator to be used by the internal encryptor, if a specific encryptor has not been set with setEncryptor(...).
 void HibernatePBEByteEncryptor.setSaltGenerator(SaltGenerator saltGenerator)
          Sets the salt generator to be used by the internal encryptor, if a specific encryptor has not been set with setEncryptor(...).
 

Uses of SaltGenerator in org.jasypt.salt
 

Classes in org.jasypt.salt that implement SaltGenerator
 class FixedByteArraySaltGenerator
           This implementation of SaltGenerator always returns a fixed salt set by the user.
 class FixedStringSaltGenerator
           This implementation of SaltGenerator always returns a fixed salt set by the user as a String, which is returned as salt bytes using the specified charset for conversion (UTF-8 by default).
 class RandomSaltGenerator
           This implementation of SaltGenerator holds a secure random generator which can be used for generating random salts for encryption or digesting.
 class ZeroSaltGenerator
           This implementation of SaltGenerator always returns a salt of the required length, filled with zero bytes.
 



Copyright © 2011 The JASYPT team. All Rights Reserved.