show / hide menu

Decrypt

This function is used to decrypt the given input string.

Syntax:

Decrypt(Value, Salt)

Value is the string that has to be decrypted. Salt is the key.

Example:

Encrypt(“hello”,”myKey”)

will give you a output of “balU3QsU8nydBkI9lnNHw/”

Decrypt (“balU3QsU8nydBkI9lnNHw/”, “myKey”)

will return the actual string for you