Uses of Interface
org.jasypt.encryption.StringEncryptor
Packages that use StringEncryptor
-
Uses of StringEncryptor in org.jasypt.encryption.pbe
Subinterfaces of StringEncryptor in org.jasypt.encryption.pbeModifier and TypeInterfaceDescriptioninterface
Common interface for all Password Based Encryptors which receive a String message and return a String result, and provide means to set passwords as cleanable char[] objects (instead of immutable Strings).interface
Common interface for all Password Based Encryptors which receive a String message and return a String result.Classes in org.jasypt.encryption.pbe that implement StringEncryptorModifier and TypeClassDescriptionfinal class
Pooled implementation ofPBEStringEncryptor
that in fact contains an array ofStandardPBEStringEncryptor
objects which are used to attend encrypt and decrypt requests in round-robin.final class
Standard implementation of thePBEStringEncryptor
interface. -
Uses of StringEncryptor in org.jasypt.properties
Fields in org.jasypt.properties declared as StringEncryptorMethods in org.jasypt.properties that return StringEncryptorModifier and TypeMethodDescription(package private) StringEncryptor
EncryptablePropertiesEncryptorRegistry.getStringEncryptor
(EncryptableProperties prop) Methods in org.jasypt.properties with parameters of type StringEncryptorModifier and TypeMethodDescriptionstatic String
PropertyValueEncryptionUtils.decrypt
(String encodedValue, StringEncryptor encryptor) static String
PropertyValueEncryptionUtils.encrypt
(String decodedValue, StringEncryptor encryptor) (package private) void
EncryptablePropertiesEncryptorRegistry.setStringEncryptor
(EncryptableProperties prop, StringEncryptor encryptor) Constructors in org.jasypt.properties with parameters of type StringEncryptorModifierConstructorDescriptionEncryptableProperties
(Properties defaults, StringEncryptor stringEncryptor) Creates an EncryptableProperties instance which will use the passedStringEncryptor
object to decrypt encrypted values, and the passed defaults as default values (may contain encrypted values).EncryptableProperties
(StringEncryptor stringEncryptor) Creates an EncryptableProperties instance which will use the passedStringEncryptor
object to decrypt encrypted values.