Uses of Class
com.jalios.util.StringEncrypter.EncryptionException
-
Packages that use StringEncrypter.EncryptionException Package Description com.jalios.util Contains Jalios utility classes (Unix-like crypt class, RSS parser, mail utility, servlet utility, comparators and miscellaneous utility static methods). -
-
Uses of StringEncrypter.EncryptionException in com.jalios.util
Methods in com.jalios.util that throw StringEncrypter.EncryptionException Modifier and Type Method Description java.lang.String
StringEncrypter. decrypt(java.lang.String encryptedString)
Decrypt the specified string using this StringEncrypter.static java.lang.String
Util. decryptDES3(java.lang.String encryptedStr)
Decrypt the specified string using DESedeStringEncrypter
using same internal key used byUtil.encryptDES3(String)
.java.lang.String
StringEncrypter. encrypt(java.lang.String unencryptedString)
Encrypt the specified string using this StringEncrypter.static java.lang.String
Util. encryptDES3(java.lang.String clearStr)
Encrypt the specified string using DESedeStringEncrypter
with an internal key.
WARNING: This method is not mathematically safe and is only used to hide sensitive data on first look.Constructors in com.jalios.util that throw StringEncrypter.EncryptionException Constructor Description StringEncrypter(java.lang.String encryptionScheme, java.lang.String encryptionKey)
Create a new StringEncrypter using the specified encryption scheme and key.
-