Uses of Interface
org.jasypt.encryption.StringEncryptor
-
Packages that use StringEncryptor Package Description org.jasypt.encryption.pbe org.jasypt.properties -
-
Uses of StringEncryptor in org.jasypt.encryption.pbe
Subinterfaces of StringEncryptor in org.jasypt.encryption.pbe Modifier and Type Interface Description interfacePBEStringCleanablePasswordEncryptorCommon 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).interfacePBEStringEncryptorCommon interface for all Password Based Encryptors which receive a String message and return a String result.Classes in org.jasypt.encryption.pbe that implement StringEncryptor Modifier and Type Class Description classPooledPBEStringEncryptorPooled implementation ofPBEStringEncryptorthat in fact contains an array ofStandardPBEStringEncryptorobjects which are used to attend encrypt and decrypt requests in round-robin.classStandardPBEStringEncryptorStandard implementation of thePBEStringEncryptorinterface. -
Uses of StringEncryptor in org.jasypt.properties
Fields in org.jasypt.properties declared as StringEncryptor Modifier and Type Field Description private StringEncryptorEncryptableProperties. stringEncryptorMethods in org.jasypt.properties that return StringEncryptor Modifier and Type Method Description (package private) StringEncryptorEncryptablePropertiesEncryptorRegistry. getStringEncryptor(EncryptableProperties prop)Methods in org.jasypt.properties with parameters of type StringEncryptor Modifier and Type Method Description static java.lang.StringPropertyValueEncryptionUtils. decrypt(java.lang.String encodedValue, StringEncryptor encryptor)static java.lang.StringPropertyValueEncryptionUtils. encrypt(java.lang.String decodedValue, StringEncryptor encryptor)(package private) voidEncryptablePropertiesEncryptorRegistry. setStringEncryptor(EncryptableProperties prop, StringEncryptor encryptor)Constructors in org.jasypt.properties with parameters of type StringEncryptor Constructor Description EncryptableProperties(java.util.Properties defaults, StringEncryptor stringEncryptor)Creates an EncryptableProperties instance which will use the passedStringEncryptorobject 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 passedStringEncryptorobject to decrypt encrypted values.
-