Skip to main content
Log in

Mojo module

base64

Provides functions for base64 encoding strings.

You can import these APIs from the base64 package. For example:

from base64 import b64encode
from base64 import b64encode

Functions

  • b16decode: Performs base16 decoding on the input string.
  • b16encode: Performs base16 encoding on the input string.
  • b64decode: Performs base64 decoding on the input string.
  • b64encode: Performs base64 encoding on the input string.

Was this page helpful?