Skip to main content

module

base64

Provides functions for base64 encoding strings.

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

from base64 import b64encode

Functions

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