Base64Encode
(System Library)
| Description: |
Performs a Base64 encode of a buffer. If the optional parameter is not present, this function is treated as a wrapper for Base64Encoder. |
| Returns: | Text |
Usage: ![]() |
Script Only. |
| Function Groups: | Encryption |
| Related to: | Base64Decode | Hash | Base64Encoder |
Format: ![]() |
\System.Base64Encode(Buffer[, URLSafe]); |
| Parameters: |
| Buffer |
| Required. The information to be encoded. |
| URLSafe |
| Optional Boolean. If TRUE, an alphabet that is URL and filename safe will be used. |
| Comments: | none. |
Examples:
EncodedResult = \System.Base64Encode(SomeBuffer);
