Purpose
Returns the Base64-encoded version of the supplied binary.
Synatx
Base64Encode (BinaryValue)
BinaryValue |
The string you want encoded as Base64. |
Example
Dim B as BinaryValue
Dim S as String
B = "text"
Debug "Original = " & B
S = Base64Encode(B)
Debug "Encoded = " & S
Debug "Decoded = " & Base64Decode(S)
|