MCPcopy Index your code
hub / github.com/python/cpython / b32hexdecode

Function b32hexdecode

Lib/base64.py:252–258  ·  view source on GitHub ↗
(s, casefold=False, *, padded=True, ignorechars=b'')

Source from the content-addressed store, hash-verified

250b32hexencode.__doc__ = _B32_ENCODE_DOCSTRING.format(encoding='base32hex')
251
252def b32hexdecode(s, casefold=False, *, padded=True, ignorechars=b''):
253 s = _bytes_from_decode_data(s)
254 # base32hex does not have the 01 mapping
255 if casefold:
256 s = s.upper()
257 return binascii.a2b_base32(s, alphabet=binascii.BASE32HEX_ALPHABET,
258 padded=padded, ignorechars=ignorechars)
259b32hexdecode.__doc__ = _B32_DECODE_DOCSTRING.format(encoding='base32hex',
260 extra_args='')
261

Callers 1

checkMethod · 0.85

Calls 2

_bytes_from_decode_dataFunction · 0.85
upperMethod · 0.45

Tested by 1

checkMethod · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…