Base64
Functions
Decode the provided data from Base64, returning a raw set of bytes resulting from the decoding operation.
Decode the provided string from Base64, returning a raw set of bytes resulting from the decoding operation.
Decode the provided data from Base64, returning a regular string value, encoded as UTF-8.
Decode the provided string from Base64, returning a regular string value, encoded as UTF-8.
Encode the provided data into a Base64-encoded set of bytes, which includes padding if necessary.
Encode the provided string into a Base64-encoded byte array, which includes padding if necessary.
Encode the provided data into a Base64-encoded string, which includes padding if necessary.
Encode the provided string into a Base64-encoded string, which includes padding if necessary.
Encode the provided data into a Base64-encoded set of bytes, omitting characters which are unsafe for use on the web, including padding characters, which are not emitted.
Encode the provided string into a Base64-encoded string, omitting characters which are unsafe for use on the web, including padding characters, which are not emitted.
Encode the provided data into a Base64-encoded set of bytes, omitting characters which are unsafe for use on the web, including padding characters, which are not emitted.
Encode the provided string into a Base64-encoded string, omitting characters which are unsafe for use on the web, including padding characters, which are not emitted.