Package org.jasypt.encryption.pbe.config
Interface StringPBEConfig
-
- All Superinterfaces:
PBEConfig
- All Known Implementing Classes:
EnvironmentStringPBEConfig
,SimpleStringPBEConfig
,WebStringPBEConfig
public interface StringPBEConfig extends PBEConfig
Common interface for config classes applicable to
StandardPBEStringEncryptor
objects. This interface extendsPBEConfig
to add config parameters specific to String encryption.This interface lets the user create new PBEConfig classes which retrieve values for this parameters from different (and maybe more secure) sources (remote servers, LDAP, other databases...), and do this transparently for the encryptor object.
The config objects passed to an encryptor will only be queried once for each configuration parameter, and this will happen during the initialization of the encryptor object.
For a default implementation, see
SimpleStringPBEConfig
.- Since:
- 1.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getStringOutputType()
This parameter lets the user specify the form in which String output will be encoded.-
Methods inherited from interface org.jasypt.encryption.pbe.config.PBEConfig
getAlgorithm, getIvGenerator, getKeyObtentionIterations, getPassword, getPoolSize, getProvider, getProviderName, getSaltGenerator
-
-