Uses of Class
overit.geocall.util.CryptoException
Packages that use CryptoException
-
Uses of CryptoException in overit.geocall.crypto
Methods in overit.geocall.crypto that throw CryptoExceptionModifier and TypeMethodDescriptionReturns the provided value once it has been decrypted.Returns the provided value once it has been encrypted. -
Uses of CryptoException in overit.geocall.da
Methods in overit.geocall.da that throw CryptoExceptionModifier and TypeMethodDescriptionvoidFeedbackService.feedback(@NotNull CommandContext cc, @NotNull PoolKit pk, @NotNull DBStatement dbs) Updates the providedCommandContextwith the query results. -
Uses of CryptoException in overit.geocall.util
Methods in overit.geocall.util that throw CryptoExceptionModifier and TypeMethodDescriptionCryptoUtil.aesCBCDecrypt(String key, int keyLength, String value) Decrypts the value using the "AES/CBC/PKCS5Padding" transform and the key passed as parameter.CryptoUtil.aesCBCEncrypt(String key, int keyLength, String value) Encrypts the value using the "AES/CBC/PKCS5Padding" transform and the key passed as parameter.CryptoUtil.aesDecrypt(String key, int keyLength, String value) Decrypts the value using the Advanced Encryption Standard algorithm and the key passed as parameter.static StringCryptoUtil.aesDecrypt(String key, String value) Decrypts the value using the Advanced Encryption Standard cipher algorithm and the key passed as parameter.CryptoUtil.aesECBDecrypt(String key, int keyLength, String value) Decrypts the value using the "AES/ECB,/PKCS5Padding" transform and the key passed as parameter.CryptoUtil.aesECBEncrypt(String key, int keyLength, String value) Encrypts the value using the "AES/ECB/PKCS5Padding" transform and the key passed as parameter.CryptoUtil.aesEncrypt(String key, int keyLength, String value) Encrypts the value using the Advanced Encryption Standard algorithm and the key passed as parameter.static StringCryptoUtil.aesEncrypt(String key, String value) Encrypts the value using the Advanced Encryption Standard cipher algorithm and the key passed as parameter.static StringCryptoUtil.aesKeyGenerate(int keySize) Generates the key for the Advanced Encryption Standard cipher algorithm.CryptoUtil.blowfishDecrypt(String key, int keyLength, String value) Decrypts the value using the Blowfish algorithm and the key passed as parameter.static StringCryptoUtil.blowfishDecrypt(String key, String value) Decrypts the value using the Blowfish algorithm and the key passed as parameter.CryptoUtil.blowfishEncrypt(String key, int keyLength, String value) Encrypts the value using the Blowfish algorithm and the key passed as parameter.static StringCryptoUtil.blowfishEncrypt(String key, String value) Encrypts the value using the Blowfish cipher algorithm and the key passed as parameter.static StringCryptoUtil.blowfishKeyGenerate(int keySize) Generates the key for the Blowfish cipher algorithm.protected StringReturns aStringabout the providedvalueonce decrypted, using the provided parameters.protected Stringprotected StringReturns aStringabout the providedvalueonce encrypted, using the provided parameters.protected Stringstatic StringCryptoUtil.generateToken(Identity id) Generates a new authentication token for the successfully logged user.static StringCryptoUtil.hash(DigestAlgorithm digestAlgorithm, String salt, String message) Returns a string that corresponds to the hashed message.static StringCryptoUtil.tripleDesDecrypt(String key, String value) Decrypts the value using the Triple DES cipher algorithm and the key passed as parameter.CryptoUtil.tripleDESDecrypt(String key, String value) Decrypts the value using the Triple DES cipher algorithm and the key passed as parameter.static StringCryptoUtil.tripleDesEncrypt(String key, String value) Encrypts the value using the Triple DES cipher algorithm and the key passed as parameter.CryptoUtil.tripleDESEncrypt(String key, String value) Encrypts the value using the Triple DES cipher algorithm and the key passed as parameter.static StringCryptoUtil.tripleDesKeyGenerate(int keySize) Generates the key for the Triple DES cipher algorithm.