mirror of
https://github.com/HyPnoTiiK/stream-fusion.git
synced 2026-07-26 22:22:08 +00:00
9 lines
176 B
Python
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')
|