Package | Description |
---|---|
org.jasypt.digest | |
org.jasypt.digest.config | |
org.jasypt.encryption.pbe | |
org.jasypt.encryption.pbe.config | |
org.jasypt.salt |
Modifier and Type | Method and Description |
---|---|
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 |
PooledByteDigester.setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator to be used.
|
void |
PooledStringDigester.setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator to be used.
|
Modifier and Type | Method and Description |
---|---|
SaltGenerator |
SimpleDigesterConfig.getSaltGenerator() |
SaltGenerator |
DigesterConfig.getSaltGenerator()
Returns a
SaltGenerator implementation to be used by the digester. |
Modifier and Type | Method and Description |
---|---|
void |
SimpleDigesterConfig.setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator.
|
void |
EnvironmentDigesterConfig.setSaltGenerator(SaltGenerator saltGenerator) |
Modifier and Type | Method and Description |
---|---|
void |
PooledPBEBigIntegerEncryptor.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 |
StandardPBEBigIntegerEncryptor.setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator to be used.
|
void |
PooledPBEByteEncryptor.setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator to be used.
|
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.
|
Modifier and Type | Method and Description |
---|---|
SaltGenerator |
PBEConfig.getSaltGenerator()
Returns a
SaltGenerator implementation to be used by the
encryptor. |
SaltGenerator |
SimplePBEConfig.getSaltGenerator() |
Modifier and Type | Method and Description |
---|---|
void |
SimplePBEConfig.setSaltGenerator(SaltGenerator saltGenerator)
Sets the salt generator.
|
void |
EnvironmentPBEConfig.setSaltGenerator(SaltGenerator saltGenerator) |
Modifier and Type | Class and Description |
---|---|
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 © 2015 The JASYPT team. All rights reserved.