Base64 Functions

scop.base64.encode(s)

Converts a string to a base64 string.
returns: string
> = scop.base64.encode('selenite')
U2VsZW5pdGU=

scop.base64.decode(s)

Converts a base64 string to a string.
returns: string
> = scop.base64.decode('U2VsZW5pdGU=')
selenite