Searched refs:b85decode (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_base64.py | 548 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/ |
D | base64.py | 436 def b85decode(b): function
|
/external/python/cpython3/Doc/library/ |
D | base64.rst | 212 .. function:: b85decode(b)
|
/external/python/cpython3/Lib/test/test_zoneinfo/ |
D | test_zoneinfo.py | 1866 decoded = base64.b85decode(raw_data)
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.4.rst | 653 :func:`~base64.b85encode`, and :func:`~base64.b85decode` provide the ability to
|