DECRYPT

Return the decrypted value of the string passed to the function. Decrypts using  encryption key and SessionId so only can decrypt values encrypted in the same session of the application. Use it to decrypt URL parameters and other application runtime values. Not recommended for decryption of values coming from database.

Syntax

= DECRYPT(value)

Parameters

value

The value which has to be decrypted. The value should be specified as a string.

Return Type

String

Examples

Example

Returns

= DECRYPT(Session(“OrderID”))

The decrypted value of the OrderID variable stored in Session

= DECRYPT("UserName")

The decrypted value of the UserName variable.