1
1
Fork 0
mirror of https://github.com/mcuadros/ascode synced 2024-05-19 22:16:07 +02:00
ascode/_documentation/runtime/base64.md
2020-03-26 21:26:03 +01:00

1.1 KiB

title
encoding/base64

base64 defines base64 encoding & decoding functions, often used to represent binary as text.

Index

Functions

def base64.decode

base64.decode(src,encoding="standard") string

parse base64 input, giving back the plain string representation

Arguments
name type description
src string source string of base64-encoded text
encoding string optional. string to set decoding dialect. allowed values are: standard,standard_raw,url,url_raw

def base64.encode

base64.encode(src,encoding="standard") string

return the base64 encoding of src

Arguments
name type description
src string source string to encode to base64
encoding string optional. string to set encoding dialect. allowed values are: standard,standard_raw,url,url_raw