Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The Based64 functions are used for encoding and decoding of Base64 data.

base64Encoder

This function takes a bytearray and returns a Base64 string representing the data.

...

ParameterDescription

data

The bytearray to encode

Returns

A Base64 encoded string

base64Decoder

This function takes a Base 64 encoded string and returns the decoded data.

...

ParameterDescription

data

The string to decode

Returns

A bytearray containing the decoded data

base64UrlEncoder

This function takes a bytearray and returns a URL safe Base64 string representing the data.

...

ParameterDescription

data

The bytearray to encode

Returns

A URL safe Base64 encoded string

base64UrlDecoder

This function takes a URL safe Base 64 encoded string and returns the decoded data.

...