MCPcopy Create free account
hub / github.com/Keeper-Security/Commander / _b32encode

Function _b32encode

keepercommander/base32hex.py:122–126  ·  view source on GitHub ↗
(src, alphabet)

Source from the content-addressed store, hash-verified

120
121
122def _b32encode(src, alphabet):
123 if type(src) == str:
124 return encode(map(ord, src), alphabet)
125 else:
126 return encode(src, alphabet)
127
128
129def b32encode(src):

Callers 2

b32encodeFunction · 0.85
b32hexencodeFunction · 0.85

Calls 1

encodeFunction · 0.85

Tested by

no test coverage detected