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')
|