Home
last modified time | relevance | path

Searched refs:b32hexencode (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_base64.py367 self.assertEqual(base64.b32hexencode(to_encode), expected)
370 self.check_other_types(base64.b32hexencode, b'abcd', b'C5H66P0=')
371 self.check_encode_type_errors(base64.b32hexencode)
720 b32hexencode = base64.b32hexencode
740 self.assertEqual(b32hexencode(b""), b"")
741 self.assertEqual(b32hexencode(b"f"), b"CO======")
742 self.assertEqual(b32hexencode(b"fo"), b"CPNG====")
743 self.assertEqual(b32hexencode(b"foo"), b"CPNMU===")
744 self.assertEqual(b32hexencode(b"foob"), b"CPNMUOG=")
745 self.assertEqual(b32hexencode(b"fooba"), b"CPNMUOJ1")
[all …]
/external/python/cpython3/Lib/
Dbase64.py257 def b32hexencode(s): function
259 b32hexencode.__doc__ = _B32_ENCODE_DOCSTRING.format(encoding='base32hex')
/external/python/cpython3/Doc/library/
Dbase64.rst139 .. function:: b32hexencode(s)
/external/python/cpython3/Misc/NEWS.d/
D3.10.0a1.rst2131 Add :func:`base64.b32hexencode` and :func:`base64.b32hexdecode` to support
/external/python/cpython3/Doc/whatsnew/
D3.10.rst925 Add :func:`base64.b32hexencode` and :func:`base64.b32hexdecode` to support the