(s, casefold=False)
| 255 | b32hexencode.__doc__ = _B32_ENCODE_DOCSTRING.format(encoding='base32hex') |
| 256 | |
| 257 | def b32hexdecode(s, casefold=False): |
| 258 | # base32hex does not have the 01 mapping |
| 259 | return _b32decode(_b32hexalphabet, s, casefold) |
| 260 | b32hexdecode.__doc__ = _B32_DECODE_DOCSTRING.format(encoding='base32hex', |
| 261 | extra_args='') |
| 262 |
nothing calls this directly
no test coverage detected