Decrypt
Decrypt Function
Decrypt the input using the specified key
Syntax
Decrypt(scalar Input, scalar Key)
Arguments
| Argument | Description |
|---|---|
scalar Input | String to be decrypted |
scalar Key | decrypt Key |
Examples:
Decrypt(Encrypt("Have a nice day !", "nice"), "nice")
Decrypts the input string using the specified key.