Encrypt
Converts a plain text string to an encrypted equivalent using simple Cipher Block Chaining (CBC).
The result of this function can be decrypted using the Decrypt function.
Syntax
Encrypt( InputText );
Parameters
| Parameter Name | Type | Description | Optional? | Default Value |
|---|---|---|---|---|
| InputText | String | The text to encrypt. | No | n/a |
Output
A string consisting of the encrypted text.