Encryption Functions

Overview

Allows for the encryption and decryption of text data using symmetric AES encryption. This plug-in uses standard Java cryptography functions to expose expression functions for the encryption and decryption of data using AES.

Key Features & Functionality

Functions:

  • encryptvalue(): Encrypt plain text data using an AES encryption key stored in the Secure Credentials Store
  • decryptvalue(): Decrypt encrypted text data using an AES encryption key stored in the Secure Credentials Store

Features:

  • Supports up to 256-bit AES keys when JCE Unlimited Strength Jurisdiction Policy is enabled
  • Backwards compatible with older versions of Java lacking support for >128-bit encryption keys
Anonymous
Parents
  • Do you know how can I tell if a string is encrypted or not? For example, if I encrypt a text and want to display the actual value, I need to decrypt it. But if the text was not encrypted before and I use the decrypt function, it will throw an error. So we need: if encrypted, then use decrypt function else just display the value. How can we do this?

Comment
  • Do you know how can I tell if a string is encrypted or not? For example, if I encrypt a text and want to display the actual value, I need to decrypt it. But if the text was not encrypted before and I use the decrypt function, it will throw an error. So we need: if encrypted, then use decrypt function else just display the value. How can we do this?

Children
No Data