encoding

Functions for encoding and decoding ASCII or Binary data in various formats.

Summary
encodingFunctions for encoding and decoding ASCII or Binary data in various formats.
Functions
base64EncodeEncodes the provided Bytes into Base64 encoded data.
base64DecodeDecodes the provided Base64 string data back into binary data.

Functions

base64Encode

FUNCTION base64Encode(data: Bytes): String

Encodes the provided Bytes into Base64 encoded data.

Parameters

dataThe binary data to be encoded to Base64.

base64Decode

FUNCTION base64Decode(encoded: String): Bytes

Decodes the provided Base64 string data back into binary data.

Parameters

encodedThe Base64 encoded data string to be decoded back into its original form.
FUNCTION base64Encode(data: Bytes): String
Encodes the provided Bytes into Base64 encoded data.
FUNCTION base64Decode(encoded: String): Bytes
Decodes the provided Base64 string data back into binary data.
Close