stream-fusion-old/stream_fusion/utils/string_encoding.py
LimeDrive 6fe4fe55f3 init
2024-07-09 04:13:29 +02:00

9 lines
176 B
Python

import base64
def encodeb64(data):
return base64.b64encode(data.encode('utf-8')).decode('utf-8')
def decodeb64(data):
return base64.b64decode(data).decode('utf-8')