Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 347 Bytes

README.md

File metadata and controls

21 lines (13 loc) · 347 Bytes

Base64

Author: Remi Rampin

Functions

encode_base64

encode_base64(content: str): str

Takes the given string and returns it as a base64-encoded string with padding.

decode_base64

decode_base64(content: str): str

Takes the given base64-encoded string and decodes it to its content.