mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-02 11:16:41 +00:00
8 lines
130 B
Python
8 lines
130 B
Python
|
from base64 import b32encode, b32decode
|
||
|
|
||
|
def b2a(i):
|
||
|
return b32encode(i).lower()
|
||
|
|
||
|
def a2b(i):
|
||
|
return b32decode(i.upper())
|