Purpose
The Decrypt function decrypts the specified encrypted value using the provided salt and encryption version. When the correct salt and encryption version are supplied, the function returns the original plain text corresponding to the encrypted value. This function can be used to decrypt values generated by the Encrypt function.
Syntax
Decrypt(Value, Salt, Version)
Arguments
1. Value – The encrypted value to be decrypted.
2. Salt – The key used along with the encrypted value for decryption.
3. Version – The encryption algorithm version to be used. The default value is 1.

Example
1. The below example returns the decrypted value as “hello”
Decrypt(“balU3QsU8nydBkI9lnNHw/”, “myKey”, 1)
2. The below example decrypts the value in TextBox2 using the provided salt and decryption version, and returns the decrypted value to TextBox1.
TextBox1.Value=Decrypt(TextBox2.Value,Salt,1)