Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_base64.py548 eq(base64.b85decode(data), res)
549 eq(base64.b85decode(data.decode("ascii")), res)
551 self.check_other_types(base64.b85decode, b'cXxL#aCvlSZ*DGca%T',
578 eq(base64.b85decode(b'cmMzZ'), b"x\x00\x00\x00")
579 eq(base64.b85decode(b'cz6H+'), b"xx\x00\x00")
580 eq(base64.b85decode(b'czAdK'), b"xxx\x00")
581 eq(base64.b85decode(b'czAet'), b"xxxx")
582 eq(base64.b85decode(b'czAetcmMzZ'), b"xxxxx\x00\x00\x00")
625 base64.b85decode(b'0000' + bytes([c]))
627 self.assertRaises(ValueError, base64.b85decode, b'|')
[all …]
/external/python/cpython3/Lib/
Dbase64.py436 def b85decode(b): function
/external/python/cpython3/Doc/library/
Dbase64.rst212 .. function:: b85decode(b)
/external/python/cpython3/Lib/test/test_zoneinfo/
Dtest_zoneinfo.py1866 decoded = base64.b85decode(raw_data)
/external/python/cpython3/Doc/whatsnew/
D3.4.rst653 :func:`~base64.b85encode`, and :func:`~base64.b85decode` provide the ability to